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

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmid <thsmi@users.noreply.github.com>2020-02-15 19:07:40 +0300
committerGitHub <noreply@github.com>2020-02-15 19:07:40 +0300
commit7d3283648c2e5a3d60301e86f892ac51e2986d5e (patch)
tree90f3ef9c0b7d35e2c331aa89cf3f98e6f03baa09 /.eslintrc.json
parent5418919deab28bce924a42e0846ccac10729ad5c (diff)
Wx experiments (#186)
Webextension MVP Experiments
Diffstat (limited to '.eslintrc.json')
-rwxr-xr-x.eslintrc.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index d416fc0c..c9f81089 100755
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -112,7 +112,7 @@
"no-eq-null" : "warn",
"no-dupe-class-members" :"error",
"no-undef": "warn",
- "no-unreachable": "warn",
+ "no-unreachable": "error",
"no-unused-vars": [
"warn",
{ "varsIgnorePattern": "EXPORTED_SYMBOLS" }
@@ -125,7 +125,7 @@
"require-await": "warn",
"no-var": "warn",
"no-confusing-arrow": "error",
- "no-console": "off",
+ "no-console": ["warn", { "allow": ["warn", "error"] }],
"no-caller": "error",
"no-eval": "error",
"no-extra-label" :"error",