Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[flake8]
extend-ignore =
# F841: local variable `name` is assigned to but never used
# while useful as a warning while writing code, the workarounds to avoid
# getting this error is often worst than the original problem
F841

# E203: whitespace before ':'
# this rule contradicts black codestyle
E203

max-line-length = 110

[pycodestyle]
max-line-length = 110