Shaci
Shaci

Reputation: 316

How to add eslint to an existing vue-cli project?

I created vue cli project without eslint option.
But now I want to try to test it. How to add ESLint in existing vue cli project?

Upvotes: 1

Views: 1746

Answers (1)

l-portet
l-portet

Reputation: 871

Just execute npm i --save @vue/cli-plugin-eslint

Docs can be found here for more details.

Upvotes: 2

Related Questions