1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-11-08 19:11:31 +01:00

feat: add no-sparse-arrays

BREAKING CHANGE: New rule introduced
This commit is contained in:
Théo LUDWIG 2024-02-08 22:09:31 +01:00
parent 17e90bcc35
commit fce826e24a
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

View File

@ -35,7 +35,6 @@
"no-duplicate-imports": "error",
"no-empty-character-class": "error",
"no-empty-pattern": "error",
"no-empty-static-block": "error",
"no-ex-assign": "error",
"no-fallthrough": "error",
"no-func-assign": "error",
@ -52,6 +51,7 @@
"no-self-assign": "error",
"no-self-compare": "error",
"no-setter-return": "error",
"no-sparse-arrays": "error",
"no-this-before-super": "error",
"no-undef": "error",
"no-unexpected-multiline": "error",
@ -96,6 +96,7 @@
"no-confusing-arrow": "error",
"no-delete-var": "error",
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-empty-static-block": "error",
"no-eval": "error",
"no-floating-decimal": "error",
"no-global-assign": "error",