aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-13 13:48:42 +0300
committerValentin Popov <info@valentineus.link>2020-02-13 13:48:42 +0300
commit98bae6b59b66de3264917949fb6cb6ca542dd683 (patch)
treed17a24d72a93fb7883f22c6ff02aa0e8ccf004d0
parent99e572a11641e3298b506bb2601ca0b94e6ebe5e (diff)
downloadeslint-config-98bae6b59b66de3264917949fb6cb6ca542dd683.tar.xz
eslint-config-98bae6b59b66de3264917949fb6cb6ca542dd683.zip
feat(eslint): Rule "newline-after-var"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/eslint.json3
2 files changed, 4 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index 3c5b9ea..9268222 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -74,7 +74,7 @@
- [ ] "multiline-ternary"
- [ ] "new-cap"
- [ ] "new-parens"
-- [ ] "newline-after-var"
+- [X] "newline-after-var"
- [ ] "newline-before-return"
- [ ] "newline-per-chained-call"
- [ ] "no-alert"
diff --git a/src/rules/eslint.json b/src/rules/eslint.json
index b3ecd7e..a8c0500 100644
--- a/src/rules/eslint.json
+++ b/src/rules/eslint.json
@@ -9,6 +9,9 @@
"lines-around-directive": [
"off"
],
+ "newline-after-var": [
+ "off"
+ ],
"no-tabs": [
"error",
{