aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-14 01:08:25 +0300
committerValentin Popov <info@valentineus.link>2020-02-14 01:08:25 +0300
commit1191beb965ca59ff897fc13cd1c99a44d7e316c3 (patch)
tree9a28e83ac8553265c660df0ada6732afc1321db6
parentddbdb502fa2800eed3b5fcea61dd158bfc72a7d3 (diff)
downloadeslint-config-1191beb965ca59ff897fc13cd1c99a44d7e316c3.tar.xz
eslint-config-1191beb965ca59ff897fc13cd1c99a44d7e316c3.zip
feat(eslint): Rule "prefer-numeric-literals"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/default.json3
2 files changed, 4 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index cd50d56..c85d867 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -237,7 +237,7 @@
- [ ] "prefer-destructuring"
- [ ] "prefer-exponentiation-operator"
- [ ] "prefer-named-capture-group"
-- [ ] "prefer-numeric-literals"
+- [X] "prefer-numeric-literals"
- [X] "prefer-object-spread"
- [ ] "prefer-promise-reject-errors"
- [X] "prefer-reflect"
diff --git a/src/rules/default.json b/src/rules/default.json
index c68506d..c4c5b47 100644
--- a/src/rules/default.json
+++ b/src/rules/default.json
@@ -395,6 +395,9 @@
"ignoreReadBeforeAssign": false
}
],
+ "prefer-numeric-literals": [
+ "error"
+ ],
"prefer-object-spread": [
"error"
],