aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/default.json7
2 files changed, 8 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index 85ca8ef..3688d7e 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -18,7 +18,7 @@
- [ ] "capitalized-comments"
- [ ] "class-methods-use-this"
- [X] "comma-dangle"
-- [ ] "comma-spacing"
+- [X] "comma-spacing"
- [ ] "comma-style"
- [ ] "complexity"
- [ ] "computed-property-spacing"
diff --git a/src/rules/default.json b/src/rules/default.json
index ce5bbe1..52611ee 100644
--- a/src/rules/default.json
+++ b/src/rules/default.json
@@ -21,6 +21,13 @@
"error",
"always-multiline"
],
+ "comma-spacing": [
+ "error",
+ {
+ "after": true,
+ "before": false
+ }
+ ],
"eol-last": [
"error",
"always"