Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Commit

Permalink
bump XO
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Oct 11, 2016
1 parent f7a8781 commit d3f6789
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 20 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ insert_final_newline = true
[{package.json,*.yml}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* text=auto
*.js text eol=lf
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
language: node_js
node_js:
- 'stable'
- 'node'
25 changes: 11 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,22 @@
"description": "Linter for XO",
"license": "MIT",
"repository": "sindresorhus/atom-linter-xo",
"private": true,
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"private": true,
"engines": {
"atom": ">=1.0.11"
},
"scripts": {
"test": "xo"
},
"keywords": [
"❤️",
"javascript",
"linter",
"eslint",
"code-style",
"xo"
],
Expand All @@ -37,18 +30,22 @@
"load-json-file": "^2.0.0",
"loophole": "^1.1.0",
"pkg-dir": "^1.0.0",
"xo": "^0.16.0"
"xo": "^0.17.0"
},
"package-deps": [
"linter"
],
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"xo": {
"esnext": true,
"globals": [
"atom"
],
"rules": {
"import/no-extraneous-dependencies": 0
}
]
}
}
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Just write some code.
Settings can be found in the `Linter` package settings. XO [config](https://github.com/sindresorhus/xo#config) should be defined in package.json.

**Note that it will only lint when XO is a dependency/devDependency in package.json.**<br>
To ensure it doesn't activate and conflict on projects using another linter, like ESLint.<br>
This is to ensure it doesn't activate and conflict on projects using another linter, like ESLint.<br>
[We're considering a way to manually enable XO.](https://github.com/sindresorhus/atom-linter-xo/issues/21)


Expand All @@ -32,4 +32,4 @@ Automagically fix many of the linter issues by running `XO: Fix` in the Command

## License

MIT © [Sindre Sorhus](http://sindresorhus.com)
MIT © [Sindre Sorhus](https://sindresorhus.com)

0 comments on commit d3f6789

Please sign in to comment.