We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--compact
1 parent 60fd100 commit 652a6e5Copy full SHA for 652a6e5
main.js
@@ -109,10 +109,6 @@ const cli = meow(`
109
stdinFilename: {
110
type: 'string',
111
alias: 'filename'
112
- },
113
- // TODO: Remove in 1.0.0
114
- compact: {
115
- type: 'boolean'
116
}
117
118
});
@@ -123,12 +119,6 @@ const input = cli.input;
123
119
const opts = cli.flags;
124
120
125
121
const log = report => {
126
- // Legacy
127
128
- if (opts.compact) {
129
- opts.reporter = 'compact';
130
- }
131
-
132
122
const reporter = opts.reporter ? xo.getFormatter(opts.reporter) : formatterPretty;
133
134
process.stdout.write(reporter(report.results));
0 commit comments