add ESLint
ESLint config: https://github.com/airbnb/javascript
Showing
.eslintignore
0 → 100644
.eslintrc
0 → 100644
package.json
0 → 100644
{ | ||
"private": true, | ||
"scripts": { | ||
"eslint": "eslint .", | ||
"eslint-fix": "eslint --fix ." | ||
}, | ||
"devDependencies": { | ||
"eslint": "^3.1.1", | ||
"eslint-config-airbnb": "^12.0.0", | ||
"eslint-plugin-import": "^2.0.1", | ||
"eslint-plugin-jsx-a11y": "^2.2.3", | ||
"eslint-plugin-react": "^6.4.1" | ||
} | ||
} |
Please register or sign in to comment