From 5e92aa597af16273896bed9675ad59afff6d74d7 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 19 Feb 2020 14:19:56 +0400 Subject: feat(vue): no-unused-vars Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/vue/default.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index 2220774..bd3dad9 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -575,7 +575,7 @@ - [ ] "no-textarea-mustache" - [ ] "no-unsupported-features" - [ ] "no-unused-components" -- [ ] "no-unused-vars" +- [X] "no-unused-vars" - [ ] "no-use-v-if-with-v-for" - [ ] "no-v-html" - [X] "object-curly-spacing" diff --git a/src/rules/vue/default.json b/src/rules/vue/default.json index f26ab8b..5371734 100644 --- a/src/rules/vue/default.json +++ b/src/rules/vue/default.json @@ -68,6 +68,9 @@ "singleline": 8 } ], + "vue/no-unused-vars": [ + "error" + ], "vue/object-curly-spacing": [ "error", "always", -- cgit v1.2.3