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
|
/*jslint laxbreak: true */
var fs, vm, sandbox, jslintCore = 'jslint-core.js';
if (typeof require !== 'undefined') {
print = require('util').puts;
fs = require('fs');
vm = require('vm');
sandbox = {};
res = vm.runInNewContext(fs.readFileSync(jslintCore), sandbox, jslintCore);
JSLINT = sandbox.JSLINT;
} else {
load('jslint-core.js');
}
// Import extra libraries if running in Rhino.
if (typeof importPackage != 'undefined') {
importPackage(java.io);
importPackage(java.lang);
}
var readSTDIN = (function() {
// readSTDIN() definition for nodejs
if (typeof process != 'undefined' && process.openStdin) {
return function readSTDIN(callback) {
var stdin = process.openStdin()
, body = [];
stdin.on('data', function(chunk) {
body.push(chunk);
});
stdin.on('end', function(chunk) {
callback(body.join('\n'));
});
};
// readSTDIN() definition for Rhino
} else if (typeof BufferedReader != 'undefined') {
return function readSTDIN(callback) {
// setup the input buffer and output buffer
var stdin = new BufferedReader(new InputStreamReader(System['in'])),
lines = [];
// read stdin buffer until EOF (or skip)
while (stdin.ready()){
lines.push(stdin.readLine());
}
callback(lines.join('\n'));
};
// readSTDIN() definition for Spidermonkey
} else if (typeof readline != 'undefined') {
return function readSTDIN(callback) {
var line
, input = []
, emptyCount = 0
, i;
line = readline();
while (emptyCount < 25) {
input.push(line);
if (line) {
emptyCount = 0;
} else {
emptyCount += 1;
}
line = readline();
}
input.splice(-emptyCount);
callback(input.join('\n'));
};
}
})();
readSTDIN(function(body) {
var ok = JSLINT(body)
, i
, error
, errorType
, nextError
, errorCount
, WARN = 'WARNING'
, ERROR = 'ERROR';
if (!ok) {
errorCount = JSLINT.errors.length;
for (i = 0; i < errorCount; i += 1) {
error = JSLINT.errors[i];
errorType = WARN;
nextError = i < errorCount ? JSLINT.errors[i+1] : null;
if (error && error.reason && error.reason.match(/^Stopping/) === null) {
// If jslint stops next, this was an actual error
if (nextError && nextError.reason && nextError.reason.match(/^Stopping/) !== null) {
errorType = ERROR;
}
print([error.line, error.character, errorType, error.reason].join(":"));
}
}
}
});
|