@sasjs/lint
Version:
Linting and formatting for SAS code
14 lines • 551 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LintRuleType = void 0;
/**
* The types of lint rules available.
* This might be expanded to include lint rules for entire folders and projects.
*/
var LintRuleType;
(function (LintRuleType) {
LintRuleType[LintRuleType["Line"] = 0] = "Line";
LintRuleType[LintRuleType["File"] = 1] = "File";
LintRuleType[LintRuleType["Path"] = 2] = "Path";
})(LintRuleType = exports.LintRuleType || (exports.LintRuleType = {}));
//# sourceMappingURL=LintRuleType.js.map