From d387d9e91b4a0e37d0d8512b3fdffd01d7258544 Mon Sep 17 00:00:00 2001 From: Raphael Mitsch Date: Tue, 4 Jul 2023 09:48:54 +0200 Subject: [PATCH] Add explanatory comment to cython-lint execution. --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c599658f4..2f74d887d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,6 +48,7 @@ jobs: - name: cython-lint run: | python -m pip install cython-lint -c requirements.txt + # E501: line too log, W291: trailing whitespace, E266: too many leading '#' for block comment cython-lint spacy --ignore E501,W291,E266 tests: