Files
ustk-todolist/.eslintrc.json
2018-05-16 23:11:01 +03:00

15 lines
263 B
JSON

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