Skip to content

Commit 65fb1dc

Browse files
committedOct 28, 2020
make default option explicit
1 parent 6979424 commit 65fb1dc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎eslintrc.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,10 @@
165165
"no-unsafe-negation": "error",
166166
"no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true, "allowTaggedTemplates": true }],
167167
"no-unused-vars": ["error", {
168-
"vars": "all",
169168
"args": "none",
170-
"ignoreRestSiblings": true
169+
"caughtErrors": "none",
170+
"ignoreRestSiblings": true,
171+
"vars": "all"
171172
}],
172173
"no-use-before-define": ["error", { "functions": false, "classes": false, "variables": false }],
173174
"no-useless-call": "error",

0 commit comments

Comments
 (0)
Please sign in to comment.