Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 flake8 和 Atom 来进行 Python linting。我不希望看到文体错误,只是程序错误。即我不在乎我是否没有在运算符周围放置适当数量的空格,但我仍然想知道在初始化之前是否使用了变量。
我知道我可以将特定的错误编号放在 flake8ini.rc 的“忽略”部分,但是有没有办法一举关闭所有风格错误?
听起来你真的只想跑步pyflakes而不是pycodestyle. 您应该能够pycodestyle通过忽略所有E和F违规来禁用:
pyflakes
pycodestyle
E
F
[flake8] ignore = E,F