refakts
Version:
TypeScript refactoring tool built for AI coding agents to perform precise refactoring operations via command line instead of requiring complete code regeneration.
27 lines • 1.34 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadQualityChecks = void 0;
const comment_check_1 = require("./checks/comment-check");
const file_size_check_1 = require("./checks/file-size-check");
const function_size_check_1 = require("./checks/function-size-check");
const duplication_check_1 = require("./checks/duplication-check");
const unused_method_check_1 = require("./checks/unused-method-check");
const incomplete_refactoring_check_1 = require("./checks/incomplete-refactoring-check");
const complexity_check_1 = require("./checks/complexity-check");
const git_diff_check_1 = require("./checks/git-diff-check");
const change_frequency_check_1 = require("./checks/change-frequency-check");
const linter_check_1 = require("./checks/linter-check");
const loadQualityChecks = () => [
linter_check_1.linterCheck,
comment_check_1.commentCheck,
file_size_check_1.fileSizeCheck,
function_size_check_1.functionSizeCheck,
duplication_check_1.duplicationCheck,
unused_method_check_1.unusedMethodCheck,
incomplete_refactoring_check_1.incompleteRefactoringCheck,
complexity_check_1.complexityCheck,
git_diff_check_1.gitDiffCheck,
change_frequency_check_1.changeFrequencyCheck
];
exports.loadQualityChecks = loadQualityChecks;
//# sourceMappingURL=plugin-loader.js.map