关键是 Python 中的“常量”并不真正存在。根据 PEP 8,Pylint 期望模块级变量是“常量”。 话虽这么说,你有几个选择: 你不想要这个“常量”的东西,然后改变 Pylint 的const-rgx正则表达式与variable-rgx相同, 您可以使用# pylint: disable=invalid-name停用此文件的这些警告,甚至可以在文件本地停用这些警告, 通过...
docker run -it --rm -v$(pwd)/example:/example python:3.10-alpine /bin/ash -x -c"pip install -q pylint==3.3.1 && pylint --version && pylint /example" And then I tested multiple versions of pylint with this script: #!/bin/bash -ePYTHON_VERSION=3.10forpylint_versionin3.0.*3.1.*3.2...