insomnia/.eslintrc.json
Manoel 69cbcdf253 Add extension to .eslintrc file (#1711)
.eslintrc without extension is deprecated
2019-10-07 11:39:55 -07:00

62 lines
1.1 KiB
JSON

{
"parser": "babel-eslint",
"extends": [
"semistandard",
"plugin:flowtype/recommended"
],
"plugins": [
"react",
"jest",
"html",
"json",
"filenames",
"flowtype"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"__DEV__": true,
"fail": true,
"HTMLDivElement": true,
"HTMLElement": true,
"HTMLInputElement": true,
"HTMLSelectElement": true
},
"env": {
"jest/globals": true
},
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"indent": "off",
"no-var": "error",
"no-duplicate-imports": "off",
"flowtype/space-after-type-colon": "off",
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"space-in-parens": "off",
"space-before-function-paren": [
"error",
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}
],
"filenames/match-exported": [
"error",
"kebab"
]
},
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": false
}
}
}