We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dd919f commit e6b98b3Copy full SHA for e6b98b3
2 files changed
.flake8
@@ -12,6 +12,8 @@ extend-ignore =
12
D102,
13
# missing docstring in public function:
14
D103,
15
+ # missing docstring in public package:
16
+ D104,
17
# missing docstring in __init__:
18
D107,
19
# 1 blank line required between summary line and description:
pyproject.toml
@@ -72,7 +72,8 @@ Download = "http://github.com/IntelPython/mkl_umath"
72
Homepage = "http://github.com/IntelPython/mkl_umath"
73
74
[tool.black]
75
-extend-exclude = "_vendored/"
+extend-exclude = "(^|/)_vendored/"
76
+force-exclude = "(^|/)_vendored/"
77
line-length = 80
78
79
[tool.cython-lint]
0 commit comments