1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-10 17:30:11 +01:00

ci: limit the linted files to what we are linting now

This commit is contained in:
proletarius101 2024-02-12 16:33:55 +08:00
parent 7525e88d14
commit 87bfe5218b

View File

@ -3,9 +3,21 @@ version: "2"
plugins:
pylint:
enabled: true
exclude_patterns:
- "**/*"
- "!fdroid"
- "!makebuildserver"
- "!setup.py"
- "!fdroidserver/*.py"
- "!tests/*.py"
- "!tests/*.TestCase"
shellcheck:
enabled: true
# Only include tests/run-tests
exclude_patterns:
- "**/*"
- "!tests/run-tests"
bandit:
enabled: true