[eslint config] [base] [deps] update eslint to v3.2

This commit is contained in:
Jordan Harband
2016-07-29 16:29:00 -07:00
parent 49dfcc42de
commit 4425d3c76b
2 changed files with 6 additions and 2 deletions

View File

@@ -47,14 +47,14 @@
"devDependencies": {
"babel-preset-airbnb": "^2.0.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.1.1",
"eslint": "^3.2.0",
"eslint-find-rules": "^1.11.1",
"eslint-plugin-import": "^1.12.0",
"in-publish": "^2.0.0",
"tape": "^4.6.0"
},
"peerDependencies": {
"eslint": "^3.1.1",
"eslint": "^3.2.0",
"eslint-plugin-import": "^1.12.0"
},
"engines": {

View File

@@ -191,6 +191,10 @@ module.exports = {
// disallow space between function identifier and application
'no-spaced-func': 2,
// disallow tab characters entirely
// TODO: enable
'no-tabs': 0,
// disallow the use of ternary operators
'no-ternary': 0,