aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/eslint.json4
2 files changed, 5 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index 9b49ea5..cf41cda 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -31,7 +31,7 @@
- [ ] "default-param-last"
- [ ] "dot-location"
- [ ] "dot-notation"
-- [ ] "eol-last"
+- [X] "eol-last"
- [ ] "eqeqeq"
- [ ] "for-direction"
- [ ] "func-call-spacing"
diff --git a/src/rules/eslint.json b/src/rules/eslint.json
index 531f091..17a1f02 100644
--- a/src/rules/eslint.json
+++ b/src/rules/eslint.json
@@ -1,4 +1,8 @@
{
+ "eol-last": [
+ "error",
+ "always"
+ ],
"no-tabs": [
"error",
{