bump eslint

This commit is contained in:
Berkeley Martinez
2015-08-07 18:09:35 -07:00
parent 71a02ed8b7
commit 66815f0762
2 changed files with 8 additions and 5 deletions

View File

@ -19,7 +19,7 @@
"router": true "router": true
}, },
"rules": { "rules": {
"no-comma-dangle": 2, "comma-dangle": 2,
"no-cond-assign": 2, "no-cond-assign": 2,
"no-console": 0, "no-console": 0,
"no-constant-condition": 2, "no-constant-condition": 2,
@ -27,7 +27,7 @@
"no-debugger": 2, "no-debugger": 2,
"no-dupe-keys": 2, "no-dupe-keys": 2,
"no-empty": 2, "no-empty": 2,
"no-empty-class": 2, "no-empty-character-class": 2,
"no-ex-assign": 2, "no-ex-assign": 2,
"no-extra-boolean-cast": 2, "no-extra-boolean-cast": 2,
"no-extra-parens": 0, "no-extra-parens": 0,
@ -163,12 +163,12 @@
], ],
"no-nested-ternary": 2, "no-nested-ternary": 2,
"no-new-object": 2, "no-new-object": 2,
"no-space-before-semi": 2, "semi-spacing": [2, { "before": false, "after": true }],
"no-spaced-func": 2, "no-spaced-func": 2,
"no-ternary": 0, "no-ternary": 0,
"no-trailing-spaces": 1, "no-trailing-spaces": 1,
"no-underscore-dangle": 0, "no-underscore-dangle": 0,
"no-wrap-func": 2, "no-extra-parens": 2,
"one-var": 0, "one-var": 0,
"operator-assignment": 0, "operator-assignment": 0,
"padded-blocks": 0, "padded-blocks": 0,
@ -206,7 +206,7 @@
"nonwords": false "nonwords": false
} }
], ],
"spaced-line-comment": [ "spaced-comment": [
2, 2,
"always", "always",
{ "exceptions": ["-"] } { "exceptions": ["-"] }

View File

@ -29,6 +29,7 @@
"async": "~0.9.0", "async": "~0.9.0",
"babel": "5.6.14", "babel": "5.6.14",
"babel-core": "5.6.15", "babel-core": "5.6.15",
"babel-eslint": "^4.0.5",
"babel-loader": "5.2.2", "babel-loader": "5.2.2",
"bcrypt-nodejs": "~0.0.3", "bcrypt-nodejs": "~0.0.3",
"body-parser": "^1.13.2", "body-parser": "^1.13.2",
@ -44,6 +45,8 @@
"debug": "~2.1.0", "debug": "~2.1.0",
"dotenv": "~0.4.0", "dotenv": "~0.4.0",
"errorhandler": "~1.3.0", "errorhandler": "~1.3.0",
"eslint": "^1.1.0",
"eslint-plugin-react": "^3.2.1",
"express": "~4.10.4", "express": "~4.10.4",
"express-flash": "~0.0.2", "express-flash": "~0.0.2",
"express-session": "~1.9.2", "express-session": "~1.9.2",