-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.js
executable file
·179 lines (148 loc) · 4.13 KB
/
cli.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
#!/usr/bin/env node
/* eslint-disable import/order */
'use strict';
const debug = require('debug')('xo');
// Prefer the local installation of XO.
const resolveCwd = require('resolve-cwd');
const hasFlag = require('has-flag');
const localCLI = resolveCwd('xo/cli');
if (!hasFlag('no-local') && localCLI && localCLI !== __filename) {
debug('Using local install of XO.');
require(localCLI);
return;
}
const path = require('path');
const spawn = require('child_process').spawn;
const updateNotifier = require('update-notifier');
const getStdin = require('get-stdin');
const meow = require('meow');
const formatterPretty = require('eslint-formatter-pretty');
const xo = require('./');
const cli = meow(`
Usage
$ xo [<file|glob> ...]
Options
--init Add XO to your project
--fix Automagically fix issues
--reporter Reporter to use
--stdin Validate code from stdin
--esnext Enforce ES2015+ rules
--env Environment preset [Can be set multiple times]
--global Global variable [Can be set multiple times]
--ignore Additional paths to ignore [Can be set multiple times]
--space Use space indent instead of tabs [Default: 2]
--no-semicolon Prevent use of semicolons
--plugin Include third-party plugins [Can be set multiple times]
--extend Extend defaults with a custom config [Can be set multiple times]
--open Open files with issues in your editor
--quiet Show only errors and no warnings
--extension Additional extension to lint [Can be set multiple times]
Examples
$ xo
$ xo index.js
$ xo *.js !foo.js
$ xo --esnext --space
$ xo --env=node --env=mocha
$ xo --init --esnext
$ xo --plugin=react
$ xo --plugin=html --extension=html
Tips
Put options in package.json instead of using flags so other tools can read it.
`, {
string: [
'_'
],
boolean: [
'init',
'compact',
'stdin',
'fix',
'open'
]
});
updateNotifier({pkg: cli.pkg}).notify();
const input = cli.input;
const opts = cli.flags;
function log(report) {
// legacy
// TODO: remove in 1.0.0
if (opts.compact) {
opts.reporter = 'compact';
}
const reporter = opts.reporter ? xo.getFormatter(opts.reporter) : formatterPretty;
process.stdout.write(reporter(report.results));
process.exit(report.errorCount === 0 ? 0 : 1);
}
function open(report) {
if (report.errorCount === 0) {
return;
}
const editor = process.env.EDITOR;
if (!editor) {
console.log(`
\`open\` option was used, but your $EDITOR environment variable is empty.
Fix it by setting path to your editor of choice in ~/.bashrc or ~/.zshrc:
export EDITOR=atom
`);
return;
}
const executableName = editor.split(path.sep).pop();
function lineColumn(message) {
return `${message.line}:${message.column}`;
}
const args = [];
report.results
.filter(file => file.errorCount > 0)
.forEach(file => {
// Sublime Text and Atom support opening file at exact position
if (['subl', 'atom'].indexOf(executableName) >= 0) {
args.push(file.filePath + ':' + lineColumn(file.messages[0]));
return;
}
// WebStorm supports opening file on a specific line (no column support)
if (executableName === 'wstorm') {
args.push(file.filePath + ':' + file.messages[0].line);
return;
}
// TextMate requires a `--line` option
if (executableName === 'mate') {
args.push('--line', lineColumn(file.messages[0]), file.filePath);
return;
}
args.push(file.filePath);
});
spawn(editor, args, {
detached: true,
stdio: 'ignore'
}).unref();
}
// `xo -` => `xo --stdin`
if (input[0] === '-') {
opts.stdin = true;
input.shift();
}
if (opts.init) {
require('xo-init')();
} else if (opts.stdin) {
getStdin().then(str => {
if (opts.fix) {
console.error('The `fix` option is not supported on stdin');
process.exit(1);
}
if (opts.open) {
console.error('The `open` option is not supported on stdin');
process.exit(1);
}
log(xo.lintText(str, opts));
});
} else {
xo.lintFiles(input, opts).then(report => {
if (opts.fix) {
xo.outputFixes(report);
}
if (opts.open) {
open(report);
}
log(report);
});
}