20 lines
486 B
JSON
20 lines
486 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"extends": ["airbnb-base", "plugin:jest/recommended", "plugin:security/recommended", "plugin:prettier/recommended"],
|
|
"plugins": ["jest", "security", "prettier"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018
|
|
},
|
|
"rules": {
|
|
"no-console": "error",
|
|
"func-names": "off",
|
|
"no-underscore-dangle": "off",
|
|
"consistent-return": "off",
|
|
"jest/expect-expect": "off",
|
|
"security/detect-object-injection": "off"
|
|
}
|
|
}
|