Reputation: 316
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?
vue cli
eslint
ESLint
Upvotes: 1
Views: 1746
Reputation: 871
Just execute npm i --save @vue/cli-plugin-eslint
npm i --save @vue/cli-plugin-eslint
Docs can be found here for more details.
Upvotes: 2