与“tabnanny”类似,我如何检查所有Python代码是否都使用4个空格作为缩进?

发布于 2024-08-24 20:44:04 字数 148 浏览 1 评论 0原文

tabnanny 类似,Python 是否有一个实用程序来检查 python 文件是否正在使用4个空格缩进?

Similar to tabnanny, is there a utility for python to check if a python file is using 4 spaces for indentation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

许你一世情深 2024-08-31 20:44:04

您可以尝试在 python 安装的工具/脚本中找到的reindent.py 脚本。

更改 Python (.py) 文件以使用 4 个空格缩进并且不使用硬制表符。还可以修剪行尾多余的空格和制表符,并删除文件末尾的空行。还要确保最后一行以换行符结尾。

You can try the reindent.py script, found in tools/scripts of your python install.

Change Python (.py) files to use 4-space indents and no hard tab characters. Also trim excess spaces and tabs from ends of lines, and remove empty lines at the end of files. Also ensure the last line ends with a newline.

叹沉浮 2024-08-31 20:44:04

Pylint 可以检查这一点以及许多其他事情。这是它给我的测试文件发出的警告:

W:  3: Bad indentation. Found 3 spaces, expected 4

也可以使用此命令行选项使其期望另一种缩进类型:

--indent-string=<string>
             String used as indentation unit. This is usually "    " 
             (4 spaces) or "\t" (1 tab). [current: '    ']

Pylint can check this among many other things. Here's a warning it gave me with a test file:

W:  3: Bad indentation. Found 3 spaces, expected 4

It's also possible to make it expect another indent type using this command line option:

--indent-string=<string>
             String used as indentation unit. This is usually "    " 
             (4 spaces) or "\t" (1 tab). [current: '    ']
紫﹏色ふ单纯 2024-08-31 20:44:04

Pylint (http://www.logilab.org/project/pylint) 检查这一点(并且更多)。

其他 Python 代码检查器(pep8、pyflakes、pychecker...)也可能这样做。

Pylint (http://www.logilab.org/project/pylint) checks this (and much more).

Other Python code checkers (pep8, pyflakes, pychecker...) may do so too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文