diff options
-rw-r--r-- | config/pycodestyle | 2 | ||||
-rw-r--r-- | pylintrc | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/config/pycodestyle b/config/pycodestyle index c178190..934a726 100644 --- a/config/pycodestyle +++ b/config/pycodestyle @@ -1,2 +1,2 @@ [pycodestyle] -ignore = E501 +ignore = E501,E203,W503 @@ -1,3 +1,5 @@ [FORMAT] -# Maximum number of characters on a single line. -max-line-length=120 +max-line-length = 120 + +[MESSAGES CONTROL] +disable = C0330,C0326,W503 |