feather/.eslintrc.json

13 lines
245 B
JSON
Raw Normal View History

2017-07-04 00:30:44 +03:00
{
"extends": "airbnb-base",
"plugins": [
"import"
],
"rules": {
"no-use-before-define": "off",
"arrow-parens": ["error", "as-needed"],
"no-shadow": "off",
"no-console": ["error", { "allow": ["warn", "error"] }]
}
}