insomnia/packages/insomnia-app/.eslintrc
2018-04-19 15:54:19 -04:00

48 lines
818 B
Plaintext

{
"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": {
"indent": "off",
"no-var": "error",
"no-duplicate-imports": "off",
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"filenames/match-exported": [
"error",
"kebab"
]
},
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": false
}
}
}