1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-09 03:58:59 +00:00

Use pycodestyle instead of pep8 (#25947)

This commit is contained in:
Pilou 2017-07-13 20:46:31 +02:00 committed by Matt Clay
parent 7329a392ff
commit 4b3d6dfa8a
8 changed files with 19 additions and 15 deletions

View file

@ -321,7 +321,7 @@ def command_sanity_pep8(args, targets):
return SanitySkipped(test)
cmd = [
'pep8',
'pycodestyle',
'--max-line-length', '160',
'--config', '/dev/null',
'--ignore', ','.join(sorted(current_ignore)),

View file

@ -1,8 +1,8 @@
cryptography
jinja2
mock
pep8
paramiko
pycodestyle
pylint
pytest
rstcheck

View file

@ -1 +1,4 @@
E305
E402
E722
E741