mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-09 01:02:38 +02:00
14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
"use strict";
|
|
|
|
const { Linter } = require("./linter");
|
|
const interpolate = require("./interpolate");
|
|
const SourceCodeFixer = require("./source-code-fixer");
|
|
|
|
module.exports = {
|
|
Linter,
|
|
|
|
// For testers.
|
|
SourceCodeFixer,
|
|
interpolate
|
|
};
|