dotfiles/.config/pycodestyle

12 lines
307 B
INI

[pycodestyle]
# W391: blank line at end of file
# W504: line break after binary operator
# E701: multiple statements on one line (colon)
# E704: multiple statements on one line (def)
# E731: do not assign a lambda expression, use a def
ignore = W391,W504,E701,E704,E731
max_line_length = 80
# vim:ft=cfg: