@anthony-ju/stylelint-config
v0.4.0
Published
stylelint config for vue project
Downloads
42
Readme
personal stylelint config for vue
安装
pnpm i -D stylelint @anthony-ju/stylelint-config使用
创建.stylelintrc文件,并将以下内容添加到文件中:
{
"extends": "@anthony-ju/stylelint-config"
}在package.json中添加以下内容:
{
"scripts": {
"lint:style": "stylelint --fix \"src/**/*.{vue,scss}\"",
}
}