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-11-23 11:21:41 +0300
committerXhmikosR <xhmikosr@gmail.com>2022-10-04 09:32:40 +0300
commit204b7a3f0b19da36caa8f9c2c65b788ed4596194 (patch)
tree4032fb1ba58d4b10310bbae6383e2eb127060332
parentc6b3389d118836723bc237fe411396f47ffde034 (diff)
ESLint: disable spaced-comment rule
-rw-r--r--.eslintrc.json1
-rw-r--r--site/.eslintrc.json1
2 files changed, 2 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index d8e83a8d2e..2e7cb476be 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -50,6 +50,7 @@
"error",
"never"
],
+ "spaced-comment": "off",
"unicorn/explicit-length-check": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-array-method-this-argument": "off",
diff --git a/site/.eslintrc.json b/site/.eslintrc.json
index 1158ba36a7..3a54486600 100644
--- a/site/.eslintrc.json
+++ b/site/.eslintrc.json
@@ -46,6 +46,7 @@
"rules": {
"no-new": "off",
"prefer-template": "error",
+ "spaced-comment": "off",
"strict": "error",
"unicorn/no-array-for-each": "off",
"unicorn/numeric-separators-style": "off",