You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
942 B
48 lines
942 B
{ |
|
"root": true, |
|
"parserOptions": { |
|
"ecmaVersion": 5, |
|
"sourceType": "script" |
|
}, |
|
"env": { |
|
"jquery": true |
|
}, |
|
"extends": [ |
|
"plugin:unicorn/recommended", |
|
"xo", |
|
"xo/browser" |
|
], |
|
"rules": { |
|
"capitalized-comments": "off", |
|
"indent": [ |
|
"error", |
|
2, |
|
{ |
|
"MemberExpression": "off", |
|
"SwitchCase": 1 |
|
} |
|
], |
|
"multiline-ternary": [ |
|
"error", |
|
"always-multiline" |
|
], |
|
"object-curly-spacing": [ |
|
"error", |
|
"always" |
|
], |
|
"semi": [ |
|
"error", |
|
"never" |
|
], |
|
"strict": "error", |
|
"unicorn/no-array-for-each": "off", |
|
"unicorn/no-for-loop": "off", |
|
"unicorn/no-null": "off", |
|
"unicorn/prefer-dataset": "off", |
|
"unicorn/prefer-includes": "off", |
|
"unicorn/prefer-node-append": "off", |
|
"unicorn/prefer-query-selector": "off", |
|
"unicorn/prefer-spread": "off", |
|
"unicorn/prevent-abbreviations": "off" |
|
} |
|
}
|
|
|