From 7e90de713d155210ddc3f6c5c8a9565f41a4ccb3 Mon Sep 17 00:00:00 2001 From: David Davis Date: Thu, 13 Jul 2017 09:25:22 -0400 Subject: [PATCH] Adding pep8speaks config file refs #2870 https://pulp.plan.io/issues/2870 --- .pep8speaks.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .pep8speaks.yml diff --git a/.pep8speaks.yml b/.pep8speaks.yml new file mode 100644 index 0000000000..b00f5d7532 --- /dev/null +++ b/.pep8speaks.yml @@ -0,0 +1,18 @@ +pycodestyle: + max-line-length: 100 # Default is 79 in PEP8 + ignore: # Errors and warnings to ignore + - E401 # multiple imports on one line + - W391 # blank line at the end of file (complains on empty __init__.py files) + exclude: + - "./docs/*" + - "*/build/*" + - "*/migrations/*" + - "server/*" + - "rel-eng/*" + - "bindings/*" + - "client_admin/*" + - "client_consumer/*" + - "client_lib/*" + - "devel/*" + - "oid_validation/*" + - "repoauth/*"