mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-21 19:50:40 +00:00
chore: disable rule D105 in flake
This commit is contained in:
parent
3d72e9fe5b
commit
1aed72f85a
@ -3,10 +3,11 @@
|
|||||||
#
|
#
|
||||||
# D102: Missing docstring in public method
|
# D102: Missing docstring in public method
|
||||||
# D103: Missing docstring in public function
|
# D103: Missing docstring in public function
|
||||||
|
# D105: Missing docstring in magic method
|
||||||
# D107: Missing docstring in __init__
|
# D107: Missing docstring in __init__
|
||||||
# D202: No blank lines allowed after function docstring
|
# D202: No blank lines allowed after function docstring
|
||||||
# W503:Line break occurred before a binary operator
|
# W503:Line break occurred before a binary operator
|
||||||
ignore = D102, D103, D107, D202, W503
|
ignore = D102, D103, D105, D107, D202, W503
|
||||||
max-line-length = 99
|
max-line-length = 99
|
||||||
inline-quotes = double
|
inline-quotes = double
|
||||||
exclude = .git, __pycache__, build, dist, test, *.pyc, *.egg-info, .cache, .eggs, env*
|
exclude = .git, __pycache__, build, dist, test, *.pyc, *.egg-info, .cache, .eggs, env*
|
||||||
|
Loading…
Reference in New Issue
Block a user