Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-07-21 15:57:47 +0300
committerGitHub <noreply@github.com>2021-07-21 15:57:47 +0300
commit75b293459628d976f26347c64774b909be329336 (patch)
tree8f919b6523061cdc5bcf23a9a73926bc498d3586 /.eslintrc.json
parent3e01830d92d3bb7209320980aa742638f61b7b38 (diff)
Update devDependencies (#34552)
* @babel/cli ^7.14.5 → ^7.14.8 * @babel/core ^7.14.6 → ^7.14.8 * @babel/preset-env ^7.14.7 → ^7.14.8 * eslint-config-xo ^0.36.0 → ^0.37.0 * eslint-plugin-unicorn ^31.0.0 → ^34.0.1 * hugo-bin ^0.73.0 → ^0.74.0
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 3d86cbdef3..b412fff13e 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -8,7 +8,12 @@
"xo/browser"
],
"rules": {
+ "arrow-body-style": "off",
"capitalized-comments": "off",
+ "comma-dangle": [
+ "error",
+ "never"
+ ],
"indent": [
"error",
2,
@@ -36,6 +41,10 @@
"error",
"always"
],
+ "operator-linebreak": [
+ "error",
+ "after"
+ ],
"semi": [
"error",
"never"
@@ -44,14 +53,18 @@
"unicorn/explicit-length-check": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-array-for-each": "off",
+ "unicorn/no-array-method-this-argument": "off",
"unicorn/no-for-loop": "off",
"unicorn/no-null": "off",
"unicorn/no-unused-properties": "error",
"unicorn/no-useless-undefined": "off",
+ "unicorn/numeric-separators-style": "off",
+ "unicorn/prefer-array-flat": "off",
"unicorn/prefer-dom-node-append": "off",
"unicorn/prefer-dom-node-dataset": "off",
"unicorn/prefer-dom-node-remove": "off",
"unicorn/prefer-module": "off",
+ "unicorn/prefer-prototype-methods": "off",
"unicorn/prefer-query-selector": "off",
"unicorn/prefer-spread": "off",
"unicorn/prevent-abbreviations": "off"