Skip to content

Instantly share code, notes, and snippets.

@gonzalodiaz
Created June 6, 2020 09:15
Show Gist options
  • Save gonzalodiaz/3dd9c251f34f5a8d462403b301206178 to your computer and use it in GitHub Desktop.
Save gonzalodiaz/3dd9c251f34f5a8d462403b301206178 to your computer and use it in GitHub Desktop.
ToxIniFull
[flake8]
# W291 trailing whitespace
# W292 no newline at end of file
# W293 blank line contains whitespace
# E203 whitespace before ':'
ignore = W291,W292,W293,E203
max-line-length = 100
max-complexity = 10
[pydocstyle]
# D100 Missing docstring in public module
# D104 Missing docstring in public package
# D107 Missing docstring in __init__
# D203 1 blank line required before class docstring (found 0)
# D213 Multi-line docstring summary should start at the second line
# D406 Section name should end with a newline ('Attributes', not 'Attributes:')
# D407 Missing dashed underline after section ('Attributes')
# D413 Missing blank line after last section ('Returns')
# D416 Section name should end with a semicolon ('Parameters:', not 'Parameters')
ignore = D100,D104,D107,D203,D213,D406,D407,D413,D416
match = .*\.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment