summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-13 13:52:27 +0300
committerValentin Popov <info@valentineus.link>2020-02-13 13:52:27 +0300
commitc6f02605aab661be2c68c23aeacbcdcad368f9ed (patch)
tree17d722260f91244d91472d930696ba920dad1d76
parent3f826d2ecbc02339d9f128d8f5c867c07354ecb4 (diff)
downloadeslint-config-c6f02605aab661be2c68c23aeacbcdcad368f9ed.tar.xz
eslint-config-c6f02605aab661be2c68c23aeacbcdcad368f9ed.zip
feat(eslint): Rule "no-spaced-func"
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 79584f5..b81ba81 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -184,7 +184,7 @@
- [ ] "no-setter-return"
- [ ] "no-shadow"
- [ ] "no-shadow-restricted-names"
-- [ ] "no-spaced-func"
+- [X] "no-spaced-func"
- [ ] "no-sparse-arrays"
- [ ] "no-sync"
- [X] "no-tabs"
diff --git a/src/rules/eslint.json b/src/rules/eslint.json
index 7ba01cb..f5ed0e4 100644
--- a/src/rules/eslint.json
+++ b/src/rules/eslint.json
@@ -24,6 +24,9 @@
"no-negated-in-lhs": [
"off"
],
+ "no-spaced-func": [
+ "off"
+ ],
"no-tabs": [
"error",
{