mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
cleanup config
This commit is contained in:
parent
e030586a9c
commit
1c6d97b10d
2 changed files with 6 additions and 1 deletions
|
|
@ -48,6 +48,9 @@ ignore=CVS
|
|||
# ignore-list. The regex matches against paths and can be in Posix or Windows
|
||||
# format. Because '\' represents the directory delimiter on Windows systems, it
|
||||
# can't be used as an escape character.
|
||||
# CERTBOT COMMENT
|
||||
# Changing this line back to the default of `ignore-paths=` is being tracked by
|
||||
# https://github.com/certbot/certbot/issues/7908.
|
||||
ignore-paths=.*/_internal/tests/
|
||||
|
||||
# Files or directories matching the regular expression patterns are skipped.
|
||||
|
|
|
|||
4
mypy.ini
4
mypy.ini
|
|
@ -1,5 +1,7 @@
|
|||
[mypy]
|
||||
exclude=.*/_internal/tests/
|
||||
# Removing this exclude setting is being tracked by
|
||||
# https://github.com/certbot/certbot/issues/7909.
|
||||
exclude = .*/_internal/tests/
|
||||
ignore_missing_imports = True
|
||||
warn_unused_ignores = True
|
||||
show_error_codes = True
|
||||
|
|
|
|||
Loading…
Reference in a new issue