0

tileset: drastic code style fixes

We've also added a setup.cfg to specify what rules we want for
pycodestyle. We'll be ignoring some dumb ones that make no sense
and probably shouldn't exist, like both W503 and W504 being an
issue somehow???????

We're using a line length limit of 100. If you're on an 80 character
terminal and incredibly upset about this, then that's the nursing
home staff's problem, not ours.
This commit is contained in:
Nicolas F
2019-03-03 16:47:35 +01:00
parent 0499f8d168
commit 7f63dfe315
2 changed files with 240 additions and 210 deletions

6
setup.cfg Normal file
View File

@@ -0,0 +1,6 @@
[pycodestyle]
max_line_length = 100
ignore = E221,E222,E741,W503,W504
statistics = True
[isort]
line_length = 100