vue-style-lint

1.0.3 • Public • Published

vue-style-lint

Build Status Coverage Status npm node

A cli style-linter for Vue using the rules and recommendations in the Vue Style Guide. Right now it only checks the order of a component's options as outlined in Priority C Rules: Recommended - Component/instance options order. Each file must be a single-file component and the element order must be <template> - <script> - <style>. If a component has no template of its own, <script> - <style> will also work.

Install

You can install globally:

npm i -g vue-style-lint

or locally:

npm i -D vue-style-lint

Usage

If you install globally, the vsl command is ready to go. It takes one argument: a single-file component (.vue file) or a folder of them:

vsl your file/folder, relative to where you are entering the command

If you install locally, you will need something like globally-installed npx to run the vsl command:

npx vsl your file/folder, relative to where you are entering the command

Alternatively, you can run the vsl command from your package.json scripts object:

"scripts": {
    "lint:style": "vsl your file/folder, relative to your project's root"
}

You would then run:

npm run lint:style

Output

One of the following messages logged to the console:

  • the component's options are already in order
  • the recommended order
  • an error message

Author/Maintainer

@jamessouth

License

MIT © james south

Dependents (0)

Package Sidebar

Install

npm i vue-style-lint

Weekly Downloads

3

Version

1.0.3

License

MIT

Unpacked Size

265 kB

Total Files

24

Last publish

Collaborators

  • jamessouth