Skip to content

Commit

Permalink
Update setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
NaveenKinnal committed Dec 6, 2022
1 parent aaf4fe8 commit ad576bd
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions components/lab-workspace-manager/backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ license_files = LICENSE
universal = false

[flake8]
ignore =
E203, # space before : (needed for how black formats slicing)
# E266, # too many leading '#' for block comment
E501, # line too long
E731, # do not assign a lambda expression, use a def
W503, # line break before binary operator
extend-ignore =
# space before : (needed for how black formats slicing)
E203,
# line too long
E501,
# do not assign a lambda expression, use a def
E731,
# line break before binary operator
W503,
max-line-length = 88
# select = B,C,E,F,W,T4,B9
# max-complexity = 18
Expand Down

0 comments on commit ad576bd

Please sign in to comment.