mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 23:18:17 +08:00
12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
"use strict";
|
|
|
|
const { Linter } = require("./linter");
|
|
const SourceCodeFixer = require("./source-code-fixer");
|
|
|
|
module.exports = {
|
|
Linter,
|
|
|
|
// For testers.
|
|
SourceCodeFixer
|
|
};
|