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
vue-cli-service lint accepts target files or folders to lint, but vue-cli-service serve will only lint the default ones (src and tests) during development
vue-cli-service serve uses eslint-loader to lint files hat your app actually consumes. That means it can only lint files that are handled by webpack when serving your app.
So there's no way - within justifiable effort limits - to make this work as you want it to.
What problem does this feature solve?
vue-cli-service lint
accepts target files or folders to lint, butvue-cli-service serve
will only lint the default ones (src and tests) during developmentWhat does the proposed API look like?
vue-cli-service serve --lint src tests mocks
or in vue.config.js
The text was updated successfully, but these errors were encountered: