We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ba3d1f commit c0e0894Copy full SHA for c0e0894
1 file changed
tox.ini
@@ -97,7 +97,8 @@ deps =
97
pylint
98
black
99
commands =
100
- bash -c "shopt -s extglob globstar nullglob; cython-lint --max-line-length 100 **/*.p{yx,xd}"
+ # check for cython issues, ignoring file generated by cbindgen
101
+ bash -c "shopt -s extglob globstar nullglob; GLOBIGNORE='src/*/pkgcraft_c.pxd'; cython-lint --max-line-length 100 src/**/*.p{yx,xd}"
102
# check for improperly formatted imports in non-generated files
103
isort -l 100 -s pkgcraft_c.pxd --check-only --diff benches examples src tests setup.py
104
# check for unused imports
0 commit comments