check-types 或 check-lint 类似于 stylelint 的命令
check-types or check-lint similar command to stylelint
当运行像Eslint这样的lint时,我可以使用命令npm run check-lint
来检查我项目上的所有代码。打字稿中的 npm run check-types
也是如此。 stylelint 有类似的命令吗?我没有在他们的文档中找到任何关于它的信息。我知道有一个 --fix 标志,但这并不是我想要的。
这些是 npm run scripts,与 Stylelint 本身无关。您可以使用 运行 脚本 到 运行 来自包的 "scripts"
对象的任意命令。
例如,要向您的项目添加 check-styles
命令,您应该编辑 package.json
文件并添加:
{
"scripts": {
"check-styles": "stylelint \"**/*.css\""
}
}
然后您就可以使用 npm run check-styles
。
当运行像Eslint这样的lint时,我可以使用命令npm run check-lint
来检查我项目上的所有代码。打字稿中的 npm run check-types
也是如此。 stylelint 有类似的命令吗?我没有在他们的文档中找到任何关于它的信息。我知道有一个 --fix 标志,但这并不是我想要的。
这些是 npm run scripts,与 Stylelint 本身无关。您可以使用 运行 脚本 到 运行 来自包的 "scripts"
对象的任意命令。
例如,要向您的项目添加 check-styles
命令,您应该编辑 package.json
文件并添加:
{
"scripts": {
"check-styles": "stylelint \"**/*.css\""
}
}
然后您就可以使用 npm run check-styles
。