mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 23:57:49 +01:00
26 lines
462 B
JSON
26 lines
462 B
JSON
{
|
|
"extends": ["airbnb-base", "plugin:jest/recommended", "prettier"],
|
|
"plugins": ["jest", "prettier"],
|
|
"rules": {
|
|
"linebreak-style": "off",
|
|
"no-unused-expressions": [
|
|
"error",
|
|
{
|
|
"allowTernary": true
|
|
}
|
|
],
|
|
"prettier/prettier": "error",
|
|
"no-console": "warn",
|
|
"no-underscore-dangle": [
|
|
"warn",
|
|
{
|
|
"allow": ["_id"]
|
|
}
|
|
],
|
|
"func-names": "off"
|
|
},
|
|
"env": {
|
|
"node": true
|
|
}
|
|
}
|