我们如何识别 lint 格式检查格式
how do we identify lint format check format
我在 python 代码库中工作,当我 运行 命令
时会抛出此错误
make test
Oh no!
1 file would be reformatted, 28 files would be left unchanged.
make: *** [auto-format-check] Error 1
我的问题是,如何确定哪一行存在格式问题?
你没有,你 git add
文件然后应用自动格式来解决问题(可能看到你的输出是黑色的?)。应用自动格式化程序后,您可以检查 git diff
以查看更改内容。
我在 python 代码库中工作,当我 运行 命令
时会抛出此错误make test
Oh no!
1 file would be reformatted, 28 files would be left unchanged.
make: *** [auto-format-check] Error 1
我的问题是,如何确定哪一行存在格式问题?
你没有,你 git add
文件然后应用自动格式来解决问题(可能看到你的输出是黑色的?)。应用自动格式化程序后,您可以检查 git diff
以查看更改内容。