
To be followed by tests and `npm run build`, obviously! Reviewed-on: #1 Co-authored-by: Jack Jackson <scubbojj@gmail.com> Co-committed-by: Jack Jackson <scubbojj@gmail.com>
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
|
|
};
|