我正在使用 Python Black 自动将行长减少到 88,但 pep8 linter 强制执行 79 个字符的限制。我想关掉这个
我的.codeclimate.yaml
文件以:
engines:
pep8:
enabled: true
checks:
E501: # Line length checks
enabled: false
但这似乎不受尊重。
我正在使用 Python Black 自动将行长减少到 88,但 pep8 linter 强制执行 79 个字符的限制。我想关掉这个
我的.codeclimate.yaml
文件以:
engines:
pep8:
enabled: true
checks:
E501: # Line length checks
enabled: false
但这似乎不受尊重。
https://docs.codeclimate.com/docs/advanced-configuration指出
作为存储库设置页面中可用配置的替代方法,您可以选择提交配置文件
.codeclimate.yml
或.codeclimate.json
配置文件。
文件名错误:它应该以.yml
not结尾.yaml
。