mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-19 11:52:21 +01:00
c2f949c1fd
* @babel/cli ^7.13.14 → ^7.14.3 * @babel/core ^7.14.0 → ^7.14.3 * @babel/preset-env ^7.14.1 → ^7.14.2 * @rollup/plugin-commonjs ^18.0.0 → ^19.0.0 * @rollup/plugin-node-resolve ^11.2.1 → ^13.0.0 * clean-css-cli ^5.2.2 → ^5.3.0 * eslint ^7.23.0 → ^7.26.0 * eslint-config-xo ^0.35.0 → ^0.36.0 * eslint-plugin-import ^2.22.1 → ^2.23.2 * eslint-plugin-unicorn ^29.0.0 → ^31.0.0 * glob ^7.1.6 → ^7.1.7 * hugo-bin ^0.70.0 → ^0.71.1 * node-sass ^5.0.0 → ^6.0.0 * postcss ^8.2.9 → ^8.3.0 * qunit ^2.14.1 → ^2.15.0 * rollup ^2.44.0 → ^2.48.0 * stylelint ^13.12.0 → ^13.13.1 * stylelint-config-twbs-bootstrap ^2.1.0 → ^2.2.0 * vnu-jar 21.2.5 → 21.4.9
64 lines
1.5 KiB
JSON
64 lines
1.5 KiB
JSON
{
|
|
"root": true,
|
|
"extends": [
|
|
"plugin:import/errors",
|
|
"plugin:import/warnings",
|
|
"plugin:unicorn/recommended",
|
|
"xo",
|
|
"xo/browser"
|
|
],
|
|
"rules": {
|
|
"capitalized-comments": "off",
|
|
"indent": [
|
|
"error",
|
|
2,
|
|
{
|
|
"MemberExpression": "off",
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"max-params": [
|
|
"warn",
|
|
5
|
|
],
|
|
"new-cap": [
|
|
"error",
|
|
{
|
|
"properties": false
|
|
}
|
|
],
|
|
"no-console": "error",
|
|
"no-mixed-operators": "off",
|
|
"no-negated-condition": "off",
|
|
"object-curly-spacing": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"unicorn/consistent-function-scoping": "off",
|
|
"unicorn/explicit-length-check": "off",
|
|
"unicorn/no-array-callback-reference": "off",
|
|
"unicorn/no-array-for-each": "off",
|
|
"unicorn/no-for-loop": "off",
|
|
"unicorn/no-null": "off",
|
|
"unicorn/no-unused-properties": "error",
|
|
"unicorn/no-useless-undefined": "off",
|
|
"unicorn/prefer-array-find": "off",
|
|
"unicorn/prefer-dom-node-append": "off",
|
|
"unicorn/prefer-dom-node-dataset": "off",
|
|
"unicorn/prefer-dom-node-remove": "off",
|
|
"unicorn/prefer-includes": "off",
|
|
"unicorn/prefer-math-trunc": "off",
|
|
"unicorn/prefer-module": "off",
|
|
"unicorn/prefer-number-properties": "off",
|
|
"unicorn/prefer-optional-catch-binding": "off",
|
|
"unicorn/prefer-query-selector": "off",
|
|
"unicorn/prefer-reflect-apply": "off",
|
|
"unicorn/prefer-set-has": "off",
|
|
"unicorn/prevent-abbreviations": "off"
|
|
}
|
|
}
|