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.
7 lines
114 B
INI
7 lines
114 B
INI
[pycodestyle]
|
|
max_line_length = 100
|
|
ignore = E221,E222,E741,W503,W504
|
|
statistics = True
|
|
[isort]
|
|
line_length = 100
|