我有一个名为“旧东西”的目录,我不想flake8
在这个目录中检查代码。
排除它的正确语法是什么?
我查看了配置 flake8 的文档,但没有找到我想要的。
我在我的.flake8
文件中试过:
[flake8]
max-line-length = 99
exclude =
# Don't check the Old directories
# Attempt 1
Old\ stuff
# Attempt 2
"Old stuff"
# Attempt 3
/Old stuff/
# Attempt 4
./Old stuff/
# Attempt 5
/Old\ stuff/
这些语法都不起作用。
尝试在命令行上排除时出现同样的问题:
flake8 --exclude=Old\ stuff