Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: xojs/xo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.32.0
Choose a base ref
...
head repository: xojs/xo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.32.1
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Jun 15, 2020

  1. Test on Node.js 14 (#488)

    bjornstar authored Jun 15, 2020
    Copy the full SHA
    522d264 View commit details

Commits on Jul 3, 2020

  1. Copy the full SHA
    744090a View commit details
  2. Copy the full SHA
    7d015ac View commit details
  3. 0.32.1

    sindresorhus committed Jul 3, 2020
    Copy the full SHA
    084e7a3 View commit details
Showing with 28 additions and 12 deletions.
  1. +1 −0 .travis.yml
  2. +11 −3 cli-main.js
  3. +11 −4 package.json
  4. +5 −5 test/lint-text.js
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@ os:
- windows
language: node_js
node_js:
- '14'
- '12'
- '10'
after_success:
14 changes: 11 additions & 3 deletions cli-main.js
Original file line number Diff line number Diff line change
@@ -46,6 +46,7 @@ const cli = meow(`
- Add XO to your project with \`npm init xo\`.
- Put options in package.json instead of using flags so other tools can read it.
`, {
autoVersion: false,
booleanDefault: undefined,
flags: {
fix: {
@@ -100,15 +101,14 @@ const cli = meow(`
type: 'boolean'
},
stdinFilename: {
type: 'string',
alias: 'filename'
type: 'string'
}
}
});

updateNotifier({pkg: cli.pkg}).notify();

const {input, flags: options} = cli;
const {input, flags: options, showVersion} = cli;

// Make data types for `options.space` match those of the API
// Check for string type because `xo --no-space` sets `options.space` to `false`
@@ -141,6 +141,10 @@ if (input[0] === '-') {
input.shift();
}

if (options.version) {
showVersion();
}

if (options.nodeVersion) {
if (options.nodeVersion === 'false') {
options.nodeVersion = false;
@@ -154,6 +158,10 @@ if (options.nodeVersion) {
if (options.stdin) {
const stdin = await getStdin();

if (options.stdinFilename) {
options.filename = options.stdinFilename;
}

if (options.fix) {
const result = xo.lintText(stdin, options).results[0];
// If there is no output, pass the stdin back out
15 changes: 11 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xo",
"version": "0.32.0",
"version": "0.32.1",
"description": "JavaScript/TypeScript linter with great defaults",
"license": "MIT",
"repository": "xojs/xo",
@@ -81,7 +81,7 @@
"json-stable-stringify-without-jsonify": "^1.0.1",
"json5": "^2.1.3",
"lodash": "^4.17.15",
"meow": "^5.0.0",
"meow": "^7.0.1",
"micromatch": "^4.0.2",
"open-editor": "^2.0.1",
"p-reduce": "^2.1.0",
@@ -96,11 +96,12 @@
"update-notifier": "^4.1.0"
},
"devDependencies": {
"ava": "^1.1.0",
"ava": "^3.9.0",
"coveralls": "^3.1.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"esm": "^3.2.25",
"execa": "^4.0.2",
"nyc": "^15.1.0",
"pify": "^5.0.0",
@@ -113,5 +114,11 @@
},
"eslintIgnore": [
"test/fixtures"
]
],
"ava": {
"require": [
"esm"
],
"timeout": "1m"
}
}
10 changes: 5 additions & 5 deletions test/lint-text.js
Original file line number Diff line number Diff line change
@@ -74,7 +74,7 @@ test('`ignores` option without filename', t => {
fn.lintText('\'use strict\'\nconsole.log(\'unicorn\');\n', {
ignores: ['ignored/**/*.js']
});
}, /The `ignores` option requires the `filename` option to be defined./u);
}, {message: /The `ignores` option requires the `filename` option to be defined./u});
});

test('JSX support', t => {
@@ -140,22 +140,22 @@ test('regression test for #71', t => {
const {results} = fn.lintText('const foo = { key: \'value\' };\nconsole.log(foo);\n', {
extends: path.join(__dirname, 'fixtures/extends.js')
});
t.is(results[0].errorCount, 0, results[0]);
t.is(results[0].errorCount, 0);
});

test('lintText() - overrides support', async t => {
const cwd = path.join(__dirname, 'fixtures/overrides');
const bar = path.join(cwd, 'test/bar.js');
const barResults = fn.lintText(await readFile(bar, 'utf8'), {filename: bar, cwd}).results;
t.is(barResults[0].errorCount, 0, barResults[0]);
t.is(barResults[0].errorCount, 0);

const foo = path.join(cwd, 'test/foo.js');
const fooResults = fn.lintText(await readFile(foo, 'utf8'), {filename: foo, cwd}).results;
t.is(fooResults[0].errorCount, 0, fooResults[0]);
t.is(fooResults[0].errorCount, 0);

const index = path.join(cwd, 'test/index.js');
const indexResults = fn.lintText(await readFile(bar, 'utf8'), {filename: index, cwd}).results;
t.is(indexResults[0].errorCount, 0, indexResults[0]);
t.is(indexResults[0].errorCount, 0);
});

test('do not lint gitignored files if filename is given', async t => {