diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 8 |
2 files changed, 9 insertions, 1 deletions
@@ -138,7 +138,7 @@ - [ ] "no-lone-blocks" - [ ] "no-lonely-if" - [ ] "no-loop-func" -- [ ] "no-magic-numbers" +- [X] "no-magic-numbers" - [ ] "no-misleading-character-class" - [ ] "no-mixed-operators" - [ ] "no-mixed-requires" diff --git a/src/rules/default.json b/src/rules/default.json index 7df9925..9b6b2dc 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -206,6 +206,14 @@ "no-extra-semi": [ "error" ], + "no-magic-numbers": [ + "warn", + { + "detectObjects": false, + "enforceConst": true, + "ignoreArrayIndexes": false + } + ], "no-multi-spaces": [ "error", { |