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:
authorXhmikosR <xhmikosr@gmail.com>2020-05-04 19:32:09 +0300
committerGitHub <noreply@github.com>2020-05-04 19:32:09 +0300
commit37f2c04c5f05a9eb1c26e615c4edf12b8a0fa5f9 (patch)
tree9ad1779599e37b43a9a76b0f3f6433586bdfd5e6 /build
parent9e8d6ba3f84a9676bc1fe47ceeee68467c0c7ffe (diff)
Clean up lint rules (#30721)
* Remove unneeded rule suppression * Format tests/unit/.eslintrc.json * build/.eslintrc.json: add strict for consistency
Diffstat (limited to 'build')
-rw-r--r--build/.eslintrc.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/.eslintrc.json b/build/.eslintrc.json
index 08169ca4cc..679bd26f7b 100644
--- a/build/.eslintrc.json
+++ b/build/.eslintrc.json
@@ -8,6 +8,7 @@
},
"extends": "../.eslintrc.json",
"rules": {
- "no-console": "off"
+ "no-console": "off",
+ "strict": "error"
}
}