5.0.1 • Published 3 months ago

@quero/eslint-config-vue v5.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

@quero/eslint-config-vue

When using this, you should add to the eslintrc in the extends the recommended version of the vue you are using:

module.exports = {
  extends: [
    'plugin:vue/vue3-recommended',
    // 'plugin:vue/vue-recommended', // if you are still using vue 2
    '@quero/eslint-config-typescript',
    // '@quero/eslint-config-base', // if you are still using pure javascript
    '@quero/eslint-config-vue',
    'plugin:vuejs-accessibility/recommended',
  ],
  plugins: [
    '@quero/vue',
    'vuejs-accessibility',
  ],
}

vuejs-accessibility is not automatically installed with @quero/eslint-config-vue, but it's highly recommended to also use it.

Rules

This package inherits all configurations from @quero/eslint-config-base.