Add more eslint checks.

This commit is contained in:
kovacsv 2021-07-12 07:40:36 +02:00
parent f2589dc2a1
commit d51c334219

View File

@ -19,6 +19,12 @@
"guard-for-in": "error",
"no-use-before-define": "error",
"no-new": "error",
"no-new-object": "error",
"no-new-func": "error",
"no-array-constructor": "error",
"no-prototype-builtins": "error",
"no-eval": "error",
"no-useless-escape": "error",
"quotes": ["error", "single"],
"block-scoped-var": "error",
"no-loop-func": "error",