twbs--bootstrap/.eslintrc.json

48 lines
803 B
JSON
Raw Normal View History

2015-08-19 02:22:46 +00:00
{
2016-10-25 12:18:52 +00:00
"root": true,
"parser": "babel-eslint",
"extends": [
"plugin:import/errors",
"plugin:import/warnings",
"plugin:unicorn/recommended",
"xo/esnext",
"xo/browser"
],
2016-10-25 12:18:52 +00:00
"rules": {
"capitalized-comments": "off",
"indent": [
"error",
2,
{
"MemberExpression": "off",
"SwitchCase": 1
2016-10-25 12:18:52 +00:00
}
],
"max-params": [
"warn",
5
],
"multiline-ternary": [
"error",
"always-multiline"
],
"object-curly-spacing": [
"error",
"always"
],
"prefer-destructuring": [
"error",
{
"object": true,
"array": false
2016-10-25 12:18:52 +00:00
}
],
"semi": [
"error",
"never"
],
"unicorn/filename-case": "off",
"unicorn/no-unused-properties": "error"
2016-10-25 12:18:52 +00:00
}
2015-08-19 02:22:46 +00:00
}