Skip to content

Commit 5fe4f74

Browse files
committed
Update linting to use eslint-config-zen
1 parent df38760 commit 5fe4f74

File tree

3 files changed

+474
-502
lines changed

3 files changed

+474
-502
lines changed

.eslintrc

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
11
{
2-
"extends": "airbnb-base",
3-
"rules": {
4-
"lines-around-directive": [0],
5-
"arrow-parens": [0],
6-
"no-param-reassign": [0],
7-
"max-len": [0],
8-
"prefer-arrow-callback": [0],
9-
"space-before-function-paren": [0],
10-
"func-names": [0],
11-
"arrow-body-style": [0],
12-
"no-unused-vars": [1, { "vars": "all", "args": "none" }]
13-
}
2+
"extends": "zen/base"
143
}

package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"node": ">=0.12.0"
1515
},
1616
"scripts": {
17-
"lint": "eslint --ignore-pattern example .",
17+
"lint": "eslint --ignore-pattern example index.js",
1818
"test": "npm run lint && ava --verbose",
1919
"bump:patch": "npm version patch -m \"v%s\"",
2020
"bump:minor": "npm version minor -m \"v%s\"",
@@ -38,8 +38,11 @@
3838
},
3939
"devDependencies": {
4040
"ava": "^0.16.0",
41-
"eslint": "^3.7.1",
42-
"eslint-config-airbnb-base": "^8.0.0",
43-
"eslint-plugin-import": "1.16.0"
41+
"babel-eslint": "^7.1.1",
42+
"eslint": "^3.10.2",
43+
"eslint-config-iansinnott": "^1.0.1",
44+
"eslint-config-zen": "^2.0.0",
45+
"eslint-plugin-flowtype": "^2.25.0",
46+
"eslint-plugin-react": "^6.7.1"
4447
}
4548
}

0 commit comments

Comments
 (0)