@uxd.wenge/stylelint-config-wg
v0.0.6
Published
CSS Style guide for uxd.wenge
Downloads
8
Maintainers
Readme
stylelint-config-wg
内部前端团队的stylelint配置
安装
npm install --save-dev [email protected] stylelint-prettier stylelint-config-prettier @uxd.wenge/stylelint-config-wg@latest
依赖版本
stylelint ^13.13.1
stylelint-config-prettier ^8.0.2
stylelint-prettier ^1.2.0
使用
- 在你的项目的根目录下创建一个
.stylelintrc.js
文件,并将以下内容复制进去:
module.exports = {
extends: [
'@uxd.wenge/stylelint-config-wg',
'stylelint-prettier/recommended'
],
rules: {},
plugins: [],
};
- 项目目录下的
package.json
添加检测指令,举个例子
{
...
"scripts": {
+ "lint:style": "stylelint \"src/**/*.{vue,less,postcss,css,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
}
...
}
引用
环境
Node.js >= 8
stylelint >= 13.5.0 新增的规则同步到 stylelint 13.7.0版本