mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-18 02:40:40 +00:00
fix linting for logging
This commit is contained in:
parent
125d3d0dc0
commit
ba3551e3a8
@ -8,8 +8,9 @@
|
|||||||
# D105: Missing docstring in magic method
|
# 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
|
# G001: Logging statements should not use string.format() for their first argument
|
||||||
ignore = D100, D101, D102, D103, D107, D202, W503
|
# W503: Line break occurred before a binary operator
|
||||||
|
ignore = D100, D101, D102, D103, D107, D202, G001, 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