1.0.3 • Published 3 years ago
@marshal93/stylelint-config v1.0.3
@marshal93/stylelint-config
INSTALL
npm i -D stylelint @marshal93/stylelint-configUsage
根目录下新建 .stylelintrc
通用
{
"extends": [
"@marshal93/stylelint-config"
]
}vue 项目
按需自行安装 less 或 scss。需要确保项目已经安装 vue-style-loader 包。
{
"extends": [
"@marshal93/stylelint-config/vue"
]
}在 package.json 里的 "scripts" 里添加 lint:style
{
"scripts": {
"lint:style": "stylelint \"src/**/*.{less,css,sass,scss}\""
}
}在项目根目录下执行 yarn lint:style 或 npm run lint:style