Skip to content

Commit d0d23ca

Browse files
committed
exclude process_src_template from linting
1 parent d17f68a commit d0d23ca

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.flake8

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ per-file-ignores =
2626
mkl_umath/ufunc_docstrings_numpy1.py: E501
2727
mkl_umath/ufunc_docstrings_numpy2.py: E501
2828

29-
exclude = _vendored/conv_template.py
29+
exclude =
30+
_vendored/conv_template.py
31+
_vendored/process_src_template.py
3032

3133
filename = *.py, *.pyx, *.pxi, *.pxd
3234
max_line_length = 80

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Download = "http://github.com/IntelPython/mkl_umath"
7272
Homepage = "http://github.com/IntelPython/mkl_umath"
7373

7474
[tool.black]
75-
exclude = "_vendored/conv_template.py"
75+
extend-exclude = "_vendored/"
7676
line-length = 80
7777

7878
[tool.cython-lint]
@@ -85,5 +85,5 @@ force_grid_wrap = 0
8585
include_trailing_comma = true
8686
line_length = 80
8787
multi_line_output = 3
88-
skip = ["_vendored/conv_template.py"]
88+
skip = ["_vendored/conv_template.py", "_vendored/process_src_template.py"]
8989
use_parentheses = true

0 commit comments

Comments
 (0)