Skip to content
New issue

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

fix(cli-plugin-eslint): Resolve proper ESLint package #2560

Merged
merged 2 commits into from
Oct 29, 2018

Conversation

michalsnik
Copy link
Member

Currently @vue/cli-plugin-eslint and it's lint command relies strictly on the ESLint package that has been set in its package.json.

There is however one problem with this - if a user updates the ESLint by him/herself - it won't be reflected by using vue-cli-service lint as it will resolve the ESlint specified in this plugin's package.json.

It might also lead to the following problem: vuejs/eslint-plugin-vue#568
After updating both ESLint and eslint-plugin-vue the ESLint no longer resolves the right eslint-plugin-vue.

In order to fix this problem I'm resolving the ESLint package using loadModule from shared utils.

Although this solves the problem, I still have few things on my mind:

  • Perhaps we should add eslint and eslint-plugin-vue to package.json automatically in generator.js and get rid of them as part of this plugin's dependencies?
  • Or maybe we want to keep it as is - that is all hidden from users and instead create a next tag on npm for beta releases of this plugin? It would however result in an extra work preparing additional releases.

What do you think about it? I'm not sure this is the proper way to address this matter so let's discuss.

@michalsnik michalsnik force-pushed the resolve-proper-eslint branch from 556874e to 706efd9 Compare September 20, 2018 10:12
@@ -1,6 +1,9 @@
module.exports = (api, options) => {
if (options.lintOnSave) {
const extensions = require('./eslintOptions').extensions(api)
const { loadModule } = require('@vue/cli-shared-utils')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add some comments here so that we know why we load it this way

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants