mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
62 lines
1.1 KiB
Plaintext
62 lines
1.1 KiB
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": {
|
|
"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
|
|
}
|
|
}
|
|
}
|