Merge pull request #13788 from timvandermeij/eslint-rules

Enable the `no-empty-character-class` and `no-template-curly-in-string` linting rules
This commit is contained in:
Jonas Jenwald 2021-07-24 15:51:54 +02:00 committed by GitHub
commit bcd6dc416a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,6 +61,7 @@
"no-dupe-keys": "error",
"no-duplicate-case": "error",
"no-empty": ["error", { "allowEmptyCatch": true, }],
"no-empty-character-class": "error",
"no-ex-assign": "error",
"no-extra-boolean-cast": "error",
"no-func-assign": "error",
@ -72,6 +73,7 @@
"no-regex-spaces": "error",
"no-setter-return": "error",
"no-sparse-arrays": "error",
"no-template-curly-in-string": "error",
"no-unexpected-multiline": "error",
"no-unreachable": "error",
"no-unsafe-finally": "error",