0.4.1 • Published 7 months ago

@jay-es/eslint-plugin-vue-sort-components v0.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

eslint-plugin-vue-sort-components

CI NPM npm (scoped with tag) code style: prettier types: TypeScript

A plugin for ESLint to keep order of component names.
The rule is auto-fixable.

Installation

$ npm install --save-dev eslint @jay-es/eslint-plugin-vue-sort-components

or

$ yarn add -dev @jay-es/eslint-plugin-vue-sort-components

Usage

Add plugin:@jay-es/vue-sort-components/recommended to the extends section of your .eslintrc configuration file.

{
  "extends": [
    // ...
    "plugin:@jay-es/vue-sort-components/recommended"
  ]
}

Custom Configuration

Add @jay-es/vue-sort-components to the plugins section of your .eslintrc configuration file.

{
  "plugins": ["@jay-es/vue-sort-components"]
}

Then configure the rule under the rules section.

{
  "rules": {
    "@jay-es/vue-sort-components/vue-sort-components": "error"
  }
}

Rule Details

This rule checks property definitions of object expressions named components and verifies that all keys are sorted alphabetically.

:thumbsdown: Examples of incorrect code for this rule:

export default defineComponent({
  components: { Foo, Bar, Baz },
});

// spreads must be grouped at the top
export default defineComponent({
  components: { Bar, Baz, Foo, ...others },
});

// not only in Vue-specific context
const myObject = {
  components: { Foo, Bar, Baz },
};

:thumbsup: Examples of correct code for this rule:

export default defineComponent({
  components: { Bar, Baz, Foo },
});

// spreads must be grouped at the top
export default defineComponent({
  components: { ...others, Bar, Baz, Foo },
});

// not only in Vue-specific context
const myObject = {
  components: { Bar, Baz, Foo },
};

Options

This rule accepts a configuration object:

{
  "@jay-es/vue-sort-components/vue-sort-components": ["error", { sortSpreads: false }]
}
  • sortSpreads - if true, enforce spread properties to be sorted. Default is false.

sortSpreads

:thumbsdown: Examples of incorrect code for the { sortSpreads: true } option:

export default defineComponent({
  components: { ...others2, ...others1, Bar, Baz },
});

:thumbsup: Examples of correct code for the { sortSpreads: true } option:

export default defineComponent({
  components: { ...others1, ...others2, Bar, Baz },
});
0.4.1

7 months ago

0.4.0

7 months ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago