antler
Version:
Directory structure linter
17 lines • 388 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Path = void 0;
const regex_rule_1 = require("../regex-rule");
class Path extends regex_rule_1.RegexRule {
getName() {
return 'Path';
}
shouldRun() {
return true;
}
getPart(node) {
return node.path;
}
}
exports.Path = Path;
//# sourceMappingURL=path.js.map