Shogo Makishima
Shogo Makishima

Reputation: 21

vue/comment-directive clear eslint-plugin-vue

When I name the vue component List.vue I got the following error: enter image description here

After I change the name to Lists.vue, the error disappears: enter image description here

Why is it happening?

Upvotes: 1

Views: 2222

Answers (2)

Ernesto
Ernesto

Reputation: 21

This error is caused because you are using a plural name in your component name. You just have to make it singular. That's all.

Upvotes: 0

osama sada
osama sada

Reputation: 7

if you want to disable this validation set the "vue/comment-directive" to 0

"vue/comment-directive" to 0

Upvotes: 1

Related Questions