Update dotfiles

This commit is contained in:
Stéphane Bidoul
2021-07-27 14:49:52 +02:00
parent f95255aa15
commit 75edb5b60c
14 changed files with 170 additions and 71 deletions

View File

@@ -1,5 +1,5 @@
[flake8]
max-line-length = 80
max-line-length = 88
max-complexity = 16
# B = bugbear
# B9 = bugbear opinionated (incl line length)
@@ -8,3 +8,5 @@ select = C,E,F,W,B,B9
# E501: flake8 line length (covered by bugbear B950)
# W503: line break before binary operator (black behaviour)
ignore = E203,E501,W503
per-file-ignores=
__init__.py:F401