forked from palantir/tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruleLoader.ts
158 lines (139 loc) · 5.82 KB
/
ruleLoader.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
* Copyright 2013 Palantir Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as fs from "fs";
import * as path from "path";
import {camelize, strLeft, strRight} from "underscore.string";
import * as Lint from "./lint";
const moduleDirectory = path.dirname(module.filename);
const CORE_RULES_DIRECTORY = path.resolve(moduleDirectory, ".", "rules");
export interface IEnableDisablePosition {
isEnabled: boolean;
position: number;
}
export function loadRules(ruleConfiguration: {[name: string]: any},
enableDisableRuleMap: {[rulename: string]: Lint.IEnableDisablePosition[]},
rulesDirectory?: string): Lint.IRule[] {
const rules: Lint.IRule[] = [];
for (const ruleName in ruleConfiguration) {
if (ruleConfiguration.hasOwnProperty(ruleName)) {
const ruleValue = ruleConfiguration[ruleName];
const Rule = findRule(ruleName, rulesDirectory);
if (Rule !== undefined) {
const all = "all"; // make the linter happy until we can turn it on and off
const allList = (all in enableDisableRuleMap ? enableDisableRuleMap[all] : []);
const ruleSpecificList = (ruleName in enableDisableRuleMap ? enableDisableRuleMap[ruleName] : []);
const disabledIntervals = buildDisabledIntervalsFromSwitches(ruleSpecificList, allList);
rules.push(new Rule(ruleName, ruleValue, disabledIntervals));
}
}
}
return rules;
}
export function findRule(name: string, rulesDirectory?: string) {
let camelizedName = transformName(name);
// first check for core rules
let Rule = loadRule(CORE_RULES_DIRECTORY, camelizedName);
if (Rule) {
return Rule;
}
// then check for rules within the first level of rulesDirectory
if (rulesDirectory) {
Rule = loadRule(rulesDirectory, camelizedName);
if (Rule) {
return Rule;
}
}
// finally check for rules within the first level of directories,
// using dash prefixes as the sub-directory names
if (rulesDirectory) {
const subDirectory = strLeft(rulesDirectory, "-");
const ruleName = strRight(rulesDirectory, "-");
if (subDirectory !== rulesDirectory && ruleName !== rulesDirectory) {
camelizedName = transformName(ruleName);
Rule = loadRule(rulesDirectory, subDirectory, camelizedName);
if (Rule) {
return Rule;
}
}
}
return undefined;
}
function transformName(name: string) {
// camelize strips out leading and trailing underscores and dashes, so make sure they aren't passed to camelize
// the regex matches the groups (leading underscores and dashes)(other characters)(trailing underscores and dashes)
const nameMatch = name.match(/^([-_]*)(.*?)([-_]*)$/);
if (nameMatch == null) {
return name + "Rule";
}
return nameMatch[1] + camelize(nameMatch[2]) + nameMatch[3] + "Rule";
}
function loadRule(...paths: string[]) {
const rulePath = paths.reduce((p, c) => path.join(p, c), "");
const fullPath = path.resolve(moduleDirectory, rulePath);
if (fs.existsSync(fullPath + ".js")) {
const ruleModule = require(fullPath);
if (ruleModule && ruleModule.Rule) {
return ruleModule.Rule;
}
}
return undefined;
}
/*
* We're assuming both lists are already sorted top-down so compare the tops, use the smallest of the two,
* and build the intervals that way.
*/
function buildDisabledIntervalsFromSwitches(ruleSpecificList: IEnableDisablePosition[], allList: IEnableDisablePosition[]) {
let isCurrentlyDisabled = false;
let disabledStartPosition: number;
const disabledIntervalList: Lint.IDisabledInterval[] = [];
let i = 0;
let j = 0;
while (i < ruleSpecificList.length || j < allList.length) {
const ruleSpecificTopPositon = (i < ruleSpecificList.length ? ruleSpecificList[i].position : Infinity);
const allTopPositon = (j < allList.length ? allList[j].position : Infinity);
let newPositionToCheck: IEnableDisablePosition;
if (ruleSpecificTopPositon < allTopPositon) {
newPositionToCheck = ruleSpecificList[i];
i++;
} else {
newPositionToCheck = allList[j];
j++;
}
// we're currently disabled and enabling, or currently enabled and disabling -- a switch
if (newPositionToCheck.isEnabled === isCurrentlyDisabled) {
if (!isCurrentlyDisabled) {
// start a new interval
disabledStartPosition = newPositionToCheck.position;
isCurrentlyDisabled = true;
} else {
// we're currently disabled and about to enable -- end the interval
disabledIntervalList.push({
endPosition: newPositionToCheck.position,
startPosition: disabledStartPosition
});
isCurrentlyDisabled = false;
}
}
}
if (isCurrentlyDisabled) {
// we started an interval but didn't finish one -- so finish it with an Infinity
disabledIntervalList.push({
endPosition: Infinity,
startPosition: disabledStartPosition
});
}
return disabledIntervalList;
}