-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy patheslint.js
executable file
·257 lines (211 loc) · 7.32 KB
/
eslint.js
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#!/usr/src/app/bin/node_gc
const fs = require("fs");
const glob = require("glob");
const eslint = require('./eslint-patch')();
const docs = require('./docs')();
const BatchSanitizer = require("./batch_sanitizer");
const EngineConfig = require("./engine_config");
const checks = require("./checks");
const validateConfig = require("./validate_config");
const computeFingerprint = require("./compute_fingerprint");
const ConfigUpgrader = require("./config_upgrader");
const RuleBlocklist = require("./rule_blocklist");
const findConfigs = require("./config_finder");
const CLIEngine = eslint.CLIEngine;
const options = { extensions: [".js"], ignore: true, reset: false, useEslintrc: true };
function run(console, runOptions) {
const STDOUT = console.log;
console.log = console.error;
var configPath = runOptions.configPath || "/config.json";
var codeDir = runOptions.dir || "/code";
var cli; // instantiation delayed until after options are (potentially) modified
var debug = false;
var ignoreWarnings = false;
var sanitizeBatch = true;
var ESLINT_WARNING_SEVERITY = 1;
// a wrapper for emitting perf timing
function runWithTiming(name, fn) {
const start = new Date();
const result = fn();
if (debug) {
const duration = (new Date() - start) / 1000;
console.error("eslint.timing." + name + ": " + duration + "s");
}
return result;
}
function contentBody(check) {
var content = docs.get(check) || "For more information visit ";
return content + "Source: http://eslint.org/docs/rules/\n";
}
function buildIssueJson(message, path) {
// ESLint doesn't emit a ruleId in the
// case of a fatal error (such as an invalid
// token)
var checkName = message.ruleId;
if(message.fatal) {
checkName = "fatal";
}
var line = message.line || 1;
var column = message.column || 1;
var issue = {
type: "issue",
categories: checks.categories(checkName),
check_name: checkName,
description: message.message,
content: {
body: contentBody(checkName)
},
location: {
path: path,
positions: {
begin: {
line: line,
column: column
},
end: {
line: line,
column: column
}
}
},
remediation_points: checks.remediationPoints(checkName, message, cli.getConfigForFile(path))
};
var fingerprint = computeFingerprint(path, checkName, message.message);
if (fingerprint) {
issue["fingerprint"] = fingerprint;
}
return JSON.stringify(issue);
}
function isFileWithMatchingExtension(file, extensions) {
var stats = fs.lstatSync(file);
var extension = "." + file.split(".").pop();
return (
stats.isFile() &&
!stats.isSymbolicLink()
&& extensions.indexOf(extension) >= 0
);
}
function isFileIgnoredByLibrary(file) {
return cli.isPathIgnored(file);
}
function prunePathsWithinSymlinks(paths) {
// Extracts symlinked paths and filters them out, including any child paths
var symlinks = paths.filter(function(path) {
return fs.lstatSync(path).isSymbolicLink();
});
return paths.filter(function(path) {
var withinSymlink = false;
symlinks.forEach(function(symlink) {
if (path.indexOf(symlink) === 0) {
withinSymlink = true;
}
});
return !withinSymlink;
});
}
function inclusionBasedFileListBuilder(includePaths) {
// Uses glob to expand the files and directories in includePaths, filtering
// down to match the list of desired extensions.
return function(extensions) {
var analysisFiles = [];
includePaths.forEach(function(fileOrDirectory, i) {
if ((/\/$/).test(fileOrDirectory)) {
// if it ends in a slash, expand and push
var filesInThisDirectory = glob.sync(
fileOrDirectory + "/**/**"
);
prunePathsWithinSymlinks(filesInThisDirectory).forEach(function(file, j){
if (!isFileIgnoredByLibrary(file) && isFileWithMatchingExtension(file, extensions)) {
analysisFiles.push(file);
}
});
} else {
if (!isFileIgnoredByLibrary(fileOrDirectory) && isFileWithMatchingExtension(fileOrDirectory, extensions)) {
analysisFiles.push(fileOrDirectory);
}
}
});
return analysisFiles;
};
}
function overrideOptions(userConfig) {
if (userConfig.configPath) {
options.configFile = codeDir + "/" + userConfig.configPath;
options.useEslintrc = false;
}
if (userConfig.extensions) {
options.extensions = userConfig.extensions;
}
if (userConfig.ignorePath) {
options.ignorePath = userConfig.ignorePath;
}
ignoreWarnings = userConfig.ignoreWarnings;
debug = userConfig.debug;
sanitizeBatch = userConfig.sanitizeBatch;
}
// No explicit includes, let's try with everything
var buildFileList = inclusionBasedFileListBuilder(["./"]);
runWithTiming("engineConfig", function () {
if (fs.existsSync(configPath)) {
var engineConfig = new EngineConfig(configPath);
if (engineConfig.includePaths) {
buildFileList = inclusionBasedFileListBuilder(engineConfig.includePaths);
}
overrideOptions(engineConfig.userConfig);
}
cli = new CLIEngine(options);
});
var analysisFiles = runWithTiming("buildFileList", function() {
return buildFileList(options.extensions);
});
function analyzeFiles() {
var batchNum = 0
, batchSize = 10
, batchFiles
, batchReport;
while(analysisFiles.length > 0) {
batchFiles = analysisFiles.splice(0, batchSize);
if (sanitizeBatch) {
batchFiles = (new BatchSanitizer(batchFiles)).sanitizedFiles();
}
if (debug) {
console.error("Analyzing: " + batchFiles);
}
runWithTiming("analyze-batch-" + batchNum, function() {
batchReport = cli.executeOnFiles(batchFiles);
});
runWithTiming("report-batch" + batchNum, function() {
batchReport.results.forEach(function(result) {
var path = result.filePath.replace(/^\/code\//, "");
result.messages.forEach(function(message) {
if (ignoreWarnings && message.severity === ESLINT_WARNING_SEVERITY) { return; }
var issueJson = buildIssueJson(message, path);
STDOUT(issueJson + "\u0000\n");
});
});
});
runWithTiming("gc-batch-" + batchNum, function() {
batchFiles = null;
batchReport = null;
global.gc();
});
batchNum++;
}
}
if (validateConfig(options.configFile)) {
console.error("ESLint is running with the " + (cli.getConfigForFile(null).parser || "default") + " parser.");
let configs = findConfigs(options.configFile, analysisFiles);
let report = [
ConfigUpgrader.upgradeInstructions(configs, process.cwd()),
RuleBlocklist.report(configs)
].reduce(function(a, b) { return a.concat([""]).concat(b); });
for (const line of report) {
console.error(line);
}
analyzeFiles();
} else {
console.error("No rules are configured. Make sure you have added a config file with rules enabled.");
console.error("See our documentation at https://docs.codeclimate.com/docs/eslint for more information.");
}
}
module.exports = { run };