mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
1d45367aa1
* Fixed duplication kve bug * Added semistandard and updated code * Actually got it working * Even better * I think it should work on Windows now
22 lines
371 B
Plaintext
22 lines
371 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"extends": ["semistandard"],
|
|
"plugins": ["react", "jest", "html", "json"],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"globals": {
|
|
"__DEV__": true,
|
|
"fail": true
|
|
},
|
|
"env": {
|
|
"jest/globals": true
|
|
},
|
|
"rules": {
|
|
"react/jsx-uses-react": "error",
|
|
"react/jsx-uses-vars": "error"
|
|
}
|
|
}
|