We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The user should be able to pass additional arguments to eslint when running the vue-cli-service lint command.
vue-cli-service lint
yarn lint --ext .js,.vue,.gql
The text was updated successfully, but these errors were encountered:
The lint command uses the Engine API, which unfortunately does not have option name parity with the CLI. https://eslint.org/docs/developer-guide/nodejs-api#cliengine vs https://eslint.org/docs/user-guide/command-line-interface#options . I will look at creating a PR that renames and propagates the command line args to the engine api
Sorry, something went wrong.
feat(lint): pass cli arguments to linter (vuejs#1255)
22a5974
9ac2642
No branches or pull requests
What problem does this feature solve?
The user should be able to pass additional arguments to eslint when running the
vue-cli-service lint
command.What does the proposed API look like?
yarn lint --ext .js,.vue,.gql
The text was updated successfully, but these errors were encountered: