We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39a885e commit e8783c2Copy full SHA for e8783c2
1 file changed
.github/workflows/flake8.yml
@@ -31,4 +31,6 @@ jobs:
31
# F401: imported but unused
32
# E303: too many blank lines
33
# E501: line too long (336 > 120 characters)
34
- flake8 --ignore=F401,E303,E501 --exclude=./app/Publishers/tenant_usage_pb2.py,./app/protos/helium/ .
+ # E226 missing whitespace around arithmetic operator
35
+ # E126 continuation line over-indented for hanging indent
36
+ flake8 --ignore=F401,E126,E266,E303,E501 --exclude=./app/Publishers/,./app/protos/helium/ .
0 commit comments