在webpack中使用stylelint规范css写法
在editor中安装stylelint
vscode安装stylelint插件
1 | 1、command + shift + p 打开命令窗口 |
配置插件
设置user setting或者workspace setting,关闭系统对css的校验
1 | "css.validate": false, |
配置文件
1 | # 安装配置规则 |
格式化文件
1 | stylelint --fix |
安装格式化插件
vscode安装 stylefmt
webpack集成stylelint
安装stylelint
1 | npm install stylelint -D |
修改postcss配置文件
1 | module.exports = { |