forked from standard/standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
196 lines (167 loc) · 5.28 KB
/
index.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
var cp = require('child_process')
var findRoot = require('find-root')
var glob = require('glob')
var Minimatch = require('minimatch').Minimatch
var parallel = require('run-parallel')
var path = require('path')
var split = require('split')
var uniq = require('uniq')
var JSCS = path.join(__dirname, 'node_modules', '.bin', 'jscs')
var JSCS_RC = path.join(__dirname, 'rc', '.jscsrc')
var JSCS_REPORTER = path.join(__dirname, 'lib', 'jscs-reporter.js')
var JSCS_REPORTER_VERBOSE = path.join(__dirname, 'lib', 'jscs-reporter-verbose.js')
var ESLINT = path.join(__dirname, 'node_modules', '.bin', 'eslint')
var ESLINT_RC = path.join(__dirname, 'rc', '.eslintrc')
var ESLINT_REPORTER = path.join(__dirname, 'lib', 'eslint-reporter.js')
var ESLINT_REPORTER_VERBOSE = path.join(__dirname, 'lib', 'eslint-reporter-verbose.js')
if (/^win/.test(process.platform)) {
JSCS += '.cmd'
ESLINT += '.cmd'
}
var DEFAULT_IGNORE = [
'node_modules/**',
'.git/**',
'**/*.min.js',
'**/bundle.js'
]
var FILE_RE = /(.*?):/
var LINE_RE = /.*?:(\d+)/
var COL_RE = /.*?:\d+:(\d+)/
/**
* JavaScript Standard Style
* @param {Object} opts options object
* @param {string|Array.<String>} opts.ignore files to ignore
* @param {boolean} opts.bare show raw linter output (for debugging)
* @param {string} opts.cwd current working directory
* @param {Array.<string>} files files to check
* @param {boolean} opts.stdin check text from stdin instead of filesystem
* @param {boolean} opts.verbose show error codes
*/
module.exports = function standard (opts) {
if (!opts) opts = {}
var errors = []
var root
try {
root = findRoot(process.cwd())
} catch (e) {}
var ignore = [].concat(DEFAULT_IGNORE) // globs to ignore
if (root) {
var packageOpts = require(path.join(root, 'package.json')).standard
if (packageOpts) ignore = ignore.concat(packageOpts.ignore)
}
var jscsReporter = opts.verbose ? JSCS_REPORTER_VERBOSE : JSCS_REPORTER
var jscsArgs = ['--config', JSCS_RC, '--reporter', jscsReporter]
var eslintReporter = opts.verbose ? ESLINT_REPORTER_VERBOSE : ESLINT_REPORTER
var eslintArgs = ['--config', ESLINT_RC, '--format', eslintReporter]
if (opts.verbose) {
jscsArgs.push('--verbose')
}
if (opts.stdin) {
// stdin
eslintArgs.push('--stdin')
lint()
} else {
var patterns = (Array.isArray(opts.files) && opts.files.length > 0)
? opts.files
: [ '**/*.js' ]
// traverse filesystem
if (opts.ignore) ignore = ignore.concat(opts.ignore)
ignore = ignore.map(function (pattern) {
return new Minimatch(pattern)
})
parallel(patterns.map(function (pattern) {
return function (cb) {
glob(pattern, {
cwd: opts.cwd || process.cwd(),
nodir: true
}, cb)
}
}), function (err, results) {
if (err) return error(err)
// flatten nested arrays
var files = results.reduce(function (files, result) {
result.forEach(function (file) {
files.push(file)
})
return files
}, [])
// apply ignore patterns
files = files.filter(function (file) {
return !ignore.some(function (mm) {
return mm.match(file)
})
})
// de-dupe
files = uniq(files)
jscsArgs = jscsArgs.concat(files)
eslintArgs = eslintArgs.concat(files)
lint()
})
}
function lint () {
parallel([
spawn.bind(undefined, JSCS, jscsArgs),
spawn.bind(undefined, ESLINT, eslintArgs)
], function (err, r) {
if (err) return error(err)
if (r.some(Boolean)) printErrors()
})
}
function spawn (command, args, cb) {
var child = cp.spawn(command, args)
child.on('error', cb)
child.on('close', function (code) {
cb(null, code)
})
if (opts.stdin) process.stdin.pipe(child.stdin)
stderrPipe(child.stdout)
stderrPipe(child.stderr)
}
function stderrPipe (readable) {
readable
.pipe(split())
.on('data', function (line) {
if (line === '') return
errors.push(line)
})
}
function printErrors () {
if (opts.bare) {
errors.forEach(function (str) {
console.error(str)
})
return
}
console.error('Error: Code style check failed:')
var errMap = {}
errors
.map(function (str) { // normalize stdin "filename"
return str.replace(/^(<text>|input)/, 'stdin')
})
.filter(function (str) { // de-duplicate errors
if (errMap[str]) return false
errMap[str] = true
return true
})
.sort(function (a, b) {
// sort by line number (merges output from all linters)
var fileA = FILE_RE.exec(a)[1]
var fileB = FILE_RE.exec(b)[1]
var lineA = Number(LINE_RE.exec(a)[1])
var lineB = Number(LINE_RE.exec(b)[1])
var colA = Number(COL_RE.exec(a)[1])
var colB = Number(COL_RE.exec(b)[1])
if (fileA !== fileB) return fileA < fileB ? -1 : 1
if (lineA !== lineB) return lineA - lineB
return colA - colB
})
.forEach(function (str) {
console.error(' ' + str) // indent
})
process.exit(1)
}
}
function error (err) {
console.error(err.stack || err.message || err)
process.exit(1)
}