feather/.eslintrc.json

18 lines
376 B
JSON
Raw Normal View History

2017-07-04 00:30:44 +03:00
{
2017-11-20 05:01:04 +03:00
"extends": ["airbnb-base", "prettier"],
"plugins": ["import", "prettier"],
2017-07-04 00:30:44 +03:00
"rules": {
"no-console": ["error", { "allow": ["warn", "error"] }],
"no-param-reassign": "off",
2017-07-04 00:30:44 +03:00
"no-shadow": "off",
2017-11-20 05:01:04 +03:00
"no-use-before-define": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "all"
}
]
2017-07-04 00:30:44 +03:00
}
}