dotfiles/.config/pycodestyle

8 lines
152 B
INI
Raw Normal View History

2019-05-28 17:44:30 +02:00
[pycodestyle]
2020-07-15 17:51:59 +02:00
# W503: line break before binary operator
2019-05-28 17:44:30 +02:00
# W504: line break after binary operator
2020-07-15 17:51:59 +02:00
ignore = W503,W504
2019-05-28 17:44:30 +02:00
max_line_length = 80
# vim:ft=cfg: