stylelint-config-yoho
安装 stylelint
在全局中安装如下node.js依赖包:
$ npm install stylelint-config-yoho -g
使用
项目中手动添加.stylelintrc配置文件,内容为:
{
"extends": "stylelint-config-yoho"
}
覆盖或者添加新规则
{
"extends": "stylelint-config-yoho",
"rules": {
"indentation": [2, "tab"]
}
}