Files
ustk-todolist/.eslintrc.json
Stepan Usatiuk c0af83f3f1 refactor app.js
test not found routes
2018-05-18 16:41:43 +03:00

17 lines
338 B
JSON

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