Skip to content

Commit

Permalink
lint: Add ignored warning descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien Bochu committed Feb 5, 2018
1 parent 7cfdd18 commit 9ee3f6d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ max-line-length = 120
exclude = build,dist,venv
max-complexity = 10
ignore = B404,C815,D10,W503
# B404: Import subprocess
# C815: Missing trailing comma in Python 3.5+
# D10x: Missing docstrings
# W503: Line break before binary operator (we use W504: Line break after binary operator)

[isort]
force_single_line = 1
Expand Down

0 comments on commit 9ee3f6d

Please sign in to comment.