Skip to content

Commit

Permalink
replace jshint with eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
gustav-olsen-groupone committed Apr 10, 2016
1 parent fd3692d commit 18a5d94
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 119 deletions.
File renamed without changes.
9 changes: 9 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
extends: [
'onelint'
],
env: {
es6: false
},
parserOptions: null
};
68 changes: 0 additions & 68 deletions .jscsrc

This file was deleted.

48 changes: 0 additions & 48 deletions .jshintrc

This file was deleted.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "index.js",
"scripts": {
"coverage": "istanbul --include-all-sources cover _mocha",
"lint": "jshint . && jscs .",
"lint": "eslint .",
"test": "mocha",
"travis": "npm run lint && npm run coverage"
},
Expand All @@ -28,9 +28,9 @@
"homepage": "https://github.com/unexpectedjs/unexpected-fs",
"devDependencies": {
"coveralls": "2.11.8",
"eslint": "2.7.0",
"eslint-config-onelint": "1.0.2",
"istanbul": "0.4.2",
"jscs": "2.10.1",
"jshint": "2.9.1",
"mocha": "2.4.5",
"unexpected": "10.8.4"
},
Expand Down

0 comments on commit 18a5d94

Please sign in to comment.