0.1.3 • Published 5 months ago

stylelint-config-jaz v0.1.3

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

stylelint-config-jaz

Usage

Install

pnpm install -D stylelint stylelint-config-jaz

Edit .stylelintrc

{
  "root": true,
  "extends": ["stylelint-config-jaz"]
}

VScode Automatic formatting

Install Plugin

  • Stylelint 【stylelint.vscode-stylelint】

Edit .vscode/settings.json

{
  "stylelint.validate": ["css", "scss", "vue", "html"],
  "stylelint.enable": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.stylelint": true
  }
}