mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
8452e8b777
* Fixed duplication kve bug * Some changes * Add proptypes linting * Fixed proptypes even more * Filename linting
24 lines
469 B
Plaintext
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"]
|
|
}
|
|
}
|