mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
29 lines
569 B
Plaintext
29 lines
569 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"extends": ["semistandard"],
|
|
"plugins": ["flowtype", "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"]
|
|
},
|
|
"settings": {
|
|
"flowtype": {
|
|
"onlyFilesWithFlowAnnotation": false
|
|
}
|
|
}
|
|
}
|