mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
8f97e2dc52
Notably: * bundlesize 0.15.3 → ^0.17.2 * eslint-plugin-unicorn ^8.0.2 → ^9.0.0 * terser ^3.17.0 → ^4.0.0
42 lines
763 B
JSON
42 lines
763 B
JSON
{
|
|
"root": true,
|
|
"parserOptions": {
|
|
"sourceType": "script"
|
|
},
|
|
"extends": [
|
|
"plugin:unicorn/recommended",
|
|
"xo",
|
|
"xo/browser"
|
|
],
|
|
"rules": {
|
|
"capitalized-comments": "off",
|
|
"indent": [
|
|
"error",
|
|
2,
|
|
{
|
|
"MemberExpression": "off",
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"multiline-ternary": [
|
|
"error",
|
|
"always-multiline"
|
|
],
|
|
"no-new": "off",
|
|
"object-curly-spacing": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"strict": "error",
|
|
"unicorn/no-for-loop": "off",
|
|
"unicorn/prefer-includes": "off",
|
|
"unicorn/prefer-node-append": "off",
|
|
"unicorn/prefer-query-selector": "off",
|
|
"unicorn/prevent-abbreviations": "off"
|
|
}
|
|
}
|