2017-12-16 06:44:17 -05:00
|
|
|
{
|
2019-02-21 08:55:16 -05:00
|
|
|
"root": true,
|
2017-12-16 06:44:17 -05:00
|
|
|
"parserOptions": {
|
2019-07-16 06:27:26 -04:00
|
|
|
"ecmaVersion": 5,
|
2017-12-16 06:44:17 -05:00
|
|
|
"sourceType": "script"
|
|
|
|
},
|
2019-02-21 08:55:16 -05:00
|
|
|
"extends": [
|
|
|
|
"plugin:unicorn/recommended",
|
|
|
|
"xo",
|
|
|
|
"xo/browser"
|
|
|
|
],
|
2017-12-16 06:44:17 -05:00
|
|
|
"rules": {
|
2019-02-21 08:55:16 -05:00
|
|
|
"capitalized-comments": "off",
|
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"MemberExpression": "off",
|
|
|
|
"SwitchCase": 1
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"multiline-ternary": [
|
|
|
|
"error",
|
|
|
|
"always-multiline"
|
|
|
|
],
|
2019-02-26 08:13:59 -05:00
|
|
|
"no-new": "off",
|
2019-02-21 08:55:16 -05:00
|
|
|
"object-curly-spacing": [
|
|
|
|
"error",
|
|
|
|
"always"
|
|
|
|
],
|
|
|
|
"semi": [
|
|
|
|
"error",
|
|
|
|
"never"
|
|
|
|
],
|
|
|
|
"strict": "error",
|
2019-06-03 07:26:52 -04:00
|
|
|
"unicorn/no-for-loop": "off",
|
2019-03-30 11:36:54 -04:00
|
|
|
"unicorn/prefer-includes": "off",
|
|
|
|
"unicorn/prefer-node-append": "off",
|
|
|
|
"unicorn/prefer-query-selector": "off",
|
|
|
|
"unicorn/prevent-abbreviations": "off"
|
2017-12-16 06:44:17 -05:00
|
|
|
}
|
|
|
|
}
|