mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-10 05:48:15 +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
|
||
|
};
|