mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 15:47:48 +01:00
44 lines
734 B
JSON
44 lines
734 B
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:node/recommended",
|
|
"plugin:jest/recommended"
|
|
],
|
|
"rules": {
|
|
"no-unused-expressions": [
|
|
"error",
|
|
{
|
|
"allowTernary": true
|
|
}
|
|
],
|
|
"no-console": "warn",
|
|
"no-underscore-dangle": [
|
|
"warn",
|
|
{
|
|
"allow": ["_id"]
|
|
}
|
|
],
|
|
"func-names": "off",
|
|
"node/no-unsupported-features/es-syntax": [
|
|
"error",
|
|
{
|
|
"version": ">=10.0.0",
|
|
"ignores": []
|
|
}
|
|
],
|
|
"node/no-unsupported-features/es-builtins": [
|
|
"error",
|
|
{
|
|
"version": ">=10.0.0",
|
|
"ignores": []
|
|
}
|
|
]
|
|
},
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"node": true
|
|
}
|
|
}
|