Disable docstring linting

This commit is contained in:
Raoul Snyman 2018-10-26 21:02:57 -07:00
parent fd36a01cd6
commit e3b46b9430
1 changed files with 2 additions and 3 deletions

View File

@ -10,14 +10,13 @@ ignore = E402
[flake8]
exclude=resources.py,vlc.py
max-line-length = 120
ignore = D200,E402,W503,W504
ignore = E402,W503,W504,D
[pycodestyle]
exclude = resources.py,vlc.py
max-line-length = 120
# Ignoring:
# E402...
# E722 do not use bare 'except'
# W503 line break before binary operator
# W504 line break after binary operator
ignore = E402,E722,W503,W504
ignore = E402,W503,W504