1.0.3 • Published 2 years ago

@marshal93/stylelint-config v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

@marshal93/stylelint-config

INSTALL

npm i -D stylelint @marshal93/stylelint-config

Usage

根目录下新建 .stylelintrc

通用

{
  "extends": [
    "@marshal93/stylelint-config"
  ]
}

vue 项目

按需自行安装 lessscss。需要确保项目已经安装 vue-style-loader 包。

{
  "extends": [
    "@marshal93/stylelint-config/vue"
  ]
}

package.json 里的 "scripts" 里添加 lint:style

{
  "scripts": {
    "lint:style": "stylelint \"src/**/*.{less,css,sass,scss}\""
  }
}

在项目根目录下执行 yarn lint:stylenpm run lint:style