Skip to content

Commit bb7f518

Browse files
committed
Pylint & MyPy strictness
`mypy-ruamel.yaml.comments` has buggy annotation -> skip
1 parent a66c78a commit bb7f518

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.pylintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ disable=non-ascii-bytes-literal,
6969
locally-disabled,
7070
file-ignored,
7171
suppressed-message,
72-
comprehension-escape,
7372
similarities,
7473
too-many-ancestors,
7574
too-few-public-methods,

setup.cfg

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,14 @@ max-line-length = 150
7171

7272
[aliases]
7373
test = pytest
74+
75+
[mypy]
76+
warn_unused_configs = True
77+
warn_redundant_casts = True
78+
show_error_context = True
79+
show_column_numbers = True
80+
pretty = True
81+
82+
[mypy-ruamel.yaml.comments]
83+
follow_imports = skip
84+
ignore_errors = True

0 commit comments

Comments
 (0)