insomnia/.eslintrc
Gregory Schier 8452e8b777 Some eslint refactoring (#109)
* Fixed duplication kve bug

* Some changes

* Add proptypes linting

* Fixed proptypes even more

* Filename linting
2017-03-07 21:52:17 -08:00

24 lines
469 B
Plaintext

{
"parser": "babel-eslint",
"extends": ["semistandard"],
"plugins": ["react", "jest", "html", "json", "filenames"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"__DEV__": true,
"fail": true
},
"env": {
"jest/globals": true
},
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"react/prop-types": "error",
"filenames/match-exported": ["error", "kebab"]
}
}