25 lines
459 B
Plaintext
25 lines
459 B
Plaintext
{
|
|
"extends": "eslint:recommended",
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"jest": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018
|
|
},
|
|
"globals": {
|
|
"SELECT": true,
|
|
"INSERT": true,
|
|
"UPDATE": true,
|
|
"DELETE": true,
|
|
"CREATE": true,
|
|
"DROP": true,
|
|
"cds": true
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"require-atomic-updates": "off"
|
|
}
|
|
}
|