This commit is contained in:
2023-04-28 02:45:32 +02:00
commit 1f28ee3622
24 changed files with 1361 additions and 0 deletions

9
.pycodestyle Normal file
View File

@ -0,0 +1,9 @@
[pycodestyle]
# E241 multiple spaces after ':' [ want to align stuff ]
# E266 too many leading '#' for block comment [ I like marking disabled code blocks with '### ' ]
# E701 multiple statements on one line (colon) [ perfectly readable ]
# E713 test for membership should be not in [ disagree: want `not a in x` ]
# E714 test for object identity should be 'is not' [ disagree: want `not a is x` ]
# W503 Line break occurred before a binary operator [ pep8 flipped on this (also contradicts W504) ]
ignore = E241,E266,E701,E713,E714,W503
max-line-length = 120