0.3.1 • Published 3 months ago

@cedric-ruiu/stylelint-config v0.3.1

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

@cedric-ruiu/stylelint-config npm

Requirements

Usage

Install

yarn add -D @cedric-ruiu/stylelint-config

Config .stylelintrc

{
  "extends": "@cedric-ruiu/stylelint-config"
}

Config VSCode auto fix

Install Stylelint extension and create .vscode/settings.json

{
  "prettier.enable": false,
  "editor.formatOnSave": false,
  "editor.codeActionsOnSave": {
    "source.fixAll.stylelint": "explicit",
    "source.organizeImports": "never"
  },
  "css.validate": false,
  "scss.validate": false,
  "stylelint.enable": true,
  "stylelint.packageManager": "yarn",
  "stylelint.snippet": ["css", "postcss", "scss", "html", "vue"],
  "stylelint.validate": ["css", "postcss", "scss", "html", "vue"],
}