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
path: root/js
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-08-26 19:33:26 +0300
committerXhmikosR <xhmikosr@gmail.com>2021-08-30 15:51:44 +0300
commitc02805bb8c9f5467a5d3fdb93edb5049272eb0a7 (patch)
treedae4a658ffd35984487bb9a79987ea90d9fac2be /js
parent4a4b61f0825ddbdb8acf1e9d3f1c1049a79aa3c7 (diff)
Move a few ESLint rules where they are needed.
Diffstat (limited to 'js')
-rw-r--r--js/tests/unit/.eslintrc.json5
1 files changed, 5 insertions, 0 deletions
diff --git a/js/tests/unit/.eslintrc.json b/js/tests/unit/.eslintrc.json
index adde3105df..6362a1acff 100644
--- a/js/tests/unit/.eslintrc.json
+++ b/js/tests/unit/.eslintrc.json
@@ -4,5 +4,10 @@
],
"env": {
"jasmine": true
+ },
+ "rules": {
+ "unicorn/consistent-function-scoping": "off",
+ "unicorn/no-useless-undefined": "off",
+ "unicorn/prefer-add-event-listener": "off"
}
}