18 lines
377 B
Plaintext
18 lines
377 B
Plaintext
{
|
|
"extends": ["eslint:recommended", "react-app"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"ecmaFeatures": {
|
|
"experimentalObjectRestSpread": true
|
|
}
|
|
},
|
|
"plugins": ["react"],
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"no-console": ["error", { "allow": ["log", "warn", "error"] }]
|
|
}
|
|
}
|