Files
ustk-todolist/.eslintrc.json

15 lines
261 B
JSON

{
"extends": ["airbnb-base"],
"rules": {
"linebreak-style": "off",
"no-unused-expressions": [
"error",
{
"allowTernary": true
}
],
"no-console": "off",
"no-underscore-dangle": ["on", { "allow": ["_id"] }]
}
}