lint
Usage: modern lint [options] [...files]
lint and fix source files
Options:
--no-fix disable auto fix source file
-h, --help display help for command
提示
Yarn 和 pnpm 调用命令时接收参数的方式不同,例如,在如下 package.json
配置中:
{
"scripts": {
"command": "modern command"
}
}
当需要执行 modern command --option
:
使用 Yarn 时,需要执行 yarn command --option
。
使用 pnpm 时,需要执行 pnpm run command -- --option
。
这是因为 pnpm 对于命令参数的处理与 Yarn 并不相同,但是与 npm 类似:在不加 --
字符串的时候,传递的是 pnpm 的参数;在使用 --
字符串的时候,传递的是执行脚本的参数。
在上述例子里参数 --option
传递给了 modern command
。如果执行 pnpm run command --option
,则参数 --option
将传递给 pnpm。
总结来说:
在使用 pnpm 时,如果传递的参数给 pnpm,不需要加 --
;如果传递的参数是给脚本使用,需要增加 --
字符串。
运行 ESLint
检查 monorepo 中代码语法情况, 通长情况下,我们只需要在 git commit
阶段通过 lint-staged
检查本次提交修改的部分代码。
--no-fix
参数设置后可以关闭自动修复 lint 错误代码的能力。