Skip to content

Commit af35213

Browse files
author
Really Him
committed
chore: fix checkers to ignore intended directories
1 parent cb1dbf8 commit af35213

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ force-sort-within-sections = true
9696
[tool.black]
9797
line-length = 100
9898
target-version = ["py311"]
99-
extend-exclude = "__INTERNAL__"
99+
extend-exclude = "__INTERNAL__|DEMOS"
100100

101101
[tool.mypy]
102102
python_version = "3.11"
@@ -113,7 +113,7 @@ warn_no_return = true
113113
pretty = true
114114
show_error_codes = true
115115
show_error_context = true
116-
exclude = ["__INTERNAL__"]
116+
exclude = ["__INTERNAL__", "DEMOS"]
117117

118118
[[tool.mypy.overrides]]
119119
module = ["radon.*", "complexipy.*"]
@@ -136,7 +136,7 @@ source = ["src/antipasta"]
136136
parallel = false
137137
concurrency = []
138138
disable_warnings = ["module-not-measured"]
139-
omit = ["*/__INTERNAL__/*"]
139+
omit = ["*/__INTERNAL__/*", "*/DEMOS/*", "*/INTERNAL/*"]
140140

141141
[tool.coverage.report]
142142
exclude_lines = [

0 commit comments

Comments
 (0)