forked from palantir/tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruleLoader.ts
150 lines (132 loc) · 5.45 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
/**
* @license
* 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 { FatalError, showWarningOnce } from "./error";
import { IOptions, IRule, RuleConstructor } from "./language/rule/rule";
import { arrayify, camelize, dedent, find } from "./utils";
const CORE_RULES_DIRECTORY = path.resolve(__dirname, "rules");
const cachedRules = new Map<string, RuleConstructor | "not-found">();
export function loadRules(
ruleOptionsList: IOptions[],
rulesDirectories?: string | string[],
isJs = false,
): IRule[] {
const rules: IRule[] = [];
const notFoundRules: string[] = [];
const notAllowedInJsRules: string[] = [];
for (const ruleOptions of ruleOptionsList) {
if (ruleOptions.ruleSeverity === "off") {
// Perf: don't bother finding the rule if it's disabled.
continue;
}
const ruleName = ruleOptions.ruleName;
const Rule = findRule(ruleName, rulesDirectories);
if (Rule === undefined) {
notFoundRules.push(ruleName);
} else if (isJs && Rule.metadata !== undefined && Rule.metadata.typescriptOnly) {
notAllowedInJsRules.push(ruleName);
} else {
const rule = new Rule(ruleOptions);
if (rule.isEnabled()) {
rules.push(rule);
}
if (Rule.metadata !== undefined && Boolean(Rule.metadata.deprecationMessage)) {
showWarningOnce(
`${Rule.metadata.ruleName} is deprecated. ${Rule.metadata.deprecationMessage}`,
);
}
}
}
if (notFoundRules.length > 0) {
const warning = dedent`
Could not find implementations for the following rules specified in the configuration:
${notFoundRules.join("\n ")}
Try upgrading TSLint and/or ensuring that you have all necessary custom rules installed.
If TSLint was recently upgraded, you may have old rules configured which need to be cleaned up.
`;
showWarningOnce(warning);
}
if (notAllowedInJsRules.length > 0) {
const warning = dedent`
Following rules specified in configuration couldn't be applied to .js or .jsx files:
${notAllowedInJsRules.join("\n ")}
Make sure to exclude them from "jsRules" section of your tslint.json.
`;
showWarningOnce(warning);
}
return rules;
}
/** @internal private API */
export function findRule(
name: string,
rulesDirectories?: string | string[],
): RuleConstructor | undefined {
const camelizedName = transformName(name);
// first check for core rules
const Rule = loadCachedRule(CORE_RULES_DIRECTORY, camelizedName);
return Rule !== undefined
? Rule
: // then check for rules within the first level of rulesDirectory
find(arrayify(rulesDirectories), dir => loadCachedRule(dir, camelizedName, true));
}
function transformName(name: string): 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`;
}
/**
* @param directory - An absolute path to a directory of rules
* @param ruleName - A name of a rule in filename format. ex) "someLintRule"
*/
function loadRule(directory: string, ruleName: string): RuleConstructor | "not-found" {
let ruleFullPath: string;
try {
// Resolve using node's path resolution to allow developers to write custom rules in TypeScript which can be loaded by TS-Node
ruleFullPath = require.resolve(path.join(directory, ruleName));
} catch {
return "not-found";
}
return (require(ruleFullPath) as { Rule: RuleConstructor }).Rule;
}
function loadCachedRule(
directory: string,
ruleName: string,
isCustomPath?: boolean,
): RuleConstructor | undefined {
// use cached value if available
const fullPath = path.join(directory, ruleName);
const cachedRule = cachedRules.get(fullPath);
if (cachedRule !== undefined) {
return cachedRule === "not-found" ? undefined : cachedRule;
}
// treat directory as a relative path (which needs to be resolved) if it's a custom rule directory
let absolutePath: string = directory;
if (isCustomPath) {
absolutePath = path.resolve(directory);
if (!fs.existsSync(absolutePath)) {
throw new FatalError(`Could not find custom rule directory: ${absolutePath}`);
}
}
const Rule = loadRule(absolutePath, ruleName);
cachedRules.set(fullPath, Rule);
return Rule === "not-found" ? undefined : Rule;
}