对于这个新手问题我真的很抱歉,但我不知道如何解决这个问题......
我安装了 linter-stylelint 并尝试像那里所说的那样配置它: https ://atom.io/packages/linter-stylelint
所以: - 我在我的项目中放置了一个 stylelint.config.js 文件。- 在设置中,我检查了使用标准 - 但看不到我必须做什么才能“在 package.json 中添加 stylelint 部分”
在我的 Mac 上,我看到了文件:/Users/eric/node_modules/stylelint-config-standard 但我不知道我必须在里面插入什么代码......
顺便说一句,当我尝试在 css 文件中使用 linter-stylelint 时,我收到错误消息: Unable to parse stylelint configuration Unexpected token :
在我的 stylelint.config.js 中,我现在有以下代码:
{
"extends": "stylelint-config-standard"
"rules" {
"no-unsupported-browser-features": [ true, { "severity": "warning" }]
}
}
谢谢,如果你能帮助我!;)
保罗