diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 23:03:58 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 23:03:58 +0300 |
commit | e4814ec7a54eb944bad99650bed770c40a00ddee (patch) | |
tree | f3e322df77bc5a8a280c90916622306bb5bda0e7 | |
parent | fc524a46098d1cfb4ca3991f41ea0b2f8334e404 (diff) | |
download | eslint-config-e4814ec7a54eb944bad99650bed770c40a00ddee.tar.xz eslint-config-e4814ec7a54eb944bad99650bed770c40a00ddee.zip |
feat(typescript): Rule "no-magic-numbers"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/typescript/default.json | 14 |
2 files changed, 15 insertions, 1 deletions
@@ -364,7 +364,7 @@ - [ ] "no-for-in-array" - [ ] "no-implied-eval" - [ ] "no-inferrable-types" -- [ ] "no-magic-numbers" +- [X] "no-magic-numbers" - [ ] "no-misused-new" - [ ] "no-misused-promises" - [ ] "no-namespace" diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 67d519e..283cdb8 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -46,6 +46,17 @@ "ignoreRestArgs": false } ], + "@typescript-eslint/no-magic-numbers": [ + "warn", + { + "detectObjects": false, + "enforceConst": true, + "ignoreArrayIndexes": false, + "ignoreEnums": true, + "ignoreNumericLiteralTypes": true, + "ignoreReadonlyClassProperties": true + } + ], "@typescript-eslint/quotes": [ "error", "double", @@ -75,6 +86,9 @@ "indent": [ "off" ], + "no-magic-numbers": [ + "off" + ], "quotes": [ "off" ], |