mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
7064c9bed4
The flake8 command was identifying several warnings and errors. This change addresses the flake8 warnings and updates the setup.cfg with additional exclusions. If accepted, jenkins will be updated to use the flake8 command, rather than using the django_jenkins plugin. This will expedite jenkins testing.
22 lines
1.2 KiB
INI
Executable File
22 lines
1.2 KiB
INI
Executable File
[pep8]
|
|
# E201 - Whitespace after '('
|
|
# E203 - Whitespace before ":"
|
|
# E221 - Multiple spaces after operator
|
|
# E225 - Missing whitespace around operator
|
|
# E231 - Missing whitespace after ','
|
|
# E241 - Multiple spaces after ','
|
|
# E251 - Unexpected spaces around keyword / parameter equals
|
|
# E261 - At least two spaces before inline comment
|
|
# E302 - Expected 2 blank lines found 0
|
|
# E303 - Too many blank lines
|
|
# E501 - Line too long
|
|
# W291 - Trailing whitespace
|
|
# W391 - Blank line at end of file
|
|
# W293 - Blank line contains whitespace
|
|
ignore=E201,E203,E221,E225,E231,E241,E251,E261,E265,E302,E303,E501,W291,W391,W293
|
|
exclude=.tox,awx/lib/site-packages,awx/plugins/inventory/ec2.py,awx/plugins/inventory/gce.py,awx/plugins/inventory/vmware.py,awx/plugins/inventory/windows_azure.py,awx/plugins/inventory/openstack.py,awx/ui,awx/api/urls.py,awx/main/migrations,awx/main/tests/data
|
|
|
|
[flake8]
|
|
ignore=E201,E203,E221,E225,E231,E241,E251,E261,E265,E302,E303,E501,W291,W391,W293,E731
|
|
exclude=.tox,awx/lib/site-packages,awx/plugins/inventory/ec2.py,awx/plugins/inventory/gce.py,awx/plugins/inventory/vmware.py,awx/plugins/inventory/windows_azure.py,awx/plugins/inventory/openstack.py,awx/ui,awx/api/urls.py,awx/main/migrations,awx/main/tests/data,node_modules/,awx/projects/,tools/docker
|