Files
ustk-todolist/.eslintrc.json
2018-05-17 13:11:57 +03:00

16 lines
288 B
JSON

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