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/build
diff options
context:
space:
mode:
authorPawel Wolak <pawelwolakk@gmail.com>2019-10-25 12:25:30 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-10-25 12:25:30 +0300
commitb3dfcdc7ed066469074e96d9ca80b0684d185d82 (patch)
tree1dc3173f9950b550be855d4d56d16982556d3d40 /build
parent9f4e72d8c12497aa8817e0a506fb0a5bf36f916a (diff)
Enable eslint no-console rule except for build directory (#29585)
Diffstat (limited to 'build')
-rw-r--r--build/.eslintrc.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/build/.eslintrc.json b/build/.eslintrc.json
index 8709a8b5b5..08169ca4cc 100644
--- a/build/.eslintrc.json
+++ b/build/.eslintrc.json
@@ -6,5 +6,8 @@
"parserOptions": {
"sourceType": "script"
},
- "extends": "../.eslintrc.json"
+ "extends": "../.eslintrc.json",
+ "rules": {
+ "no-console": "off"
+ }
}