Skip to content

Commit

Permalink
Update eslint and remove babel-eslint
Browse files Browse the repository at this point in the history
- eslint is all grown up now and does not require babel-eslint to handle
  es6 linting.
- Update eslint config to handle es6 and es6 modules
  • Loading branch information
jdlehman committed Mar 18, 2015
1 parent bffff73 commit a946020
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@
},
"devDependencies": {
"babel": "^4.7.13",
"babel-eslint": "^1.0.14",
"babelify": "^5.0.4",
"browserify": "^9.0.3",
"chai": "^2.1.0",
"coveralls": "^2.11.2",
"eslint": "^0.16.1",
"eslint": "^0.17.1",
"iso": "^4.0.2",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
Expand Down Expand Up @@ -50,9 +49,12 @@
"unidirectional"
],
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true
"node": true,
"es6": true
},
"ecmaFeatures": {
"modules": true
},
"rules": {
"brace-style": [
Expand Down

0 comments on commit a946020

Please sign in to comment.