You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I looked into my projects and i found out one missing functionality here, sometimes we can create abstract components in js files with no template, with or without render function and in that case eslint is not going to work with this file because he don't know that this is a component.
Solution:
I propose to add a way to instruct parser to treat files with comment /* @vue/component */ as vue components.
The text was updated successfully, but these errors were encountered:
* Allow to use @vue/component to set enable parsing vue objects
fixes#109
* Add support for eslint 4.x
LineComment and BlockComment was removed in 4.0.0
* Remove unessesery function
I looked into my projects and i found out one missing functionality here, sometimes we can create abstract components in js files with no template, with or without render function and in that case eslint is not going to work with this file because he don't know that this is a component.
Solution:
I propose to add a way to instruct parser to treat files with comment
/* @vue/component */
as vue components.The text was updated successfully, but these errors were encountered: