license-server/.eslintrc
2018-03-27 23:07:46 +02:00

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"] }]
}
}