Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Super Linter: ignore test json, zip, sol files #1088

Merged
merged 2 commits into from Mar 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/black.yml
Expand Up @@ -36,7 +36,7 @@ jobs:
cp pyproject.toml .github/linters

- name: Black
uses: docker://github/super-linter:v4.8.7
uses: github/super-linter/slim@v4.8.7
if: always()
env:
# run linter on everything to catch preexisting problems
Expand All @@ -46,3 +46,4 @@ jobs:
# Run only black
VALIDATE_PYTHON_BLACK: true
PYTHON_BLACK_CONFIG_FILE: pyproject.toml
FILTER_REGEX_EXCLUDE: .*tests/.*.(json|zip|sol)
3 changes: 2 additions & 1 deletion .github/workflows/linter.yml
Expand Up @@ -36,7 +36,7 @@ jobs:
cp pyproject.toml .github/linters

- name: Lint everything else
uses: docker://github/super-linter:v4
uses: github/super-linter/slim@v4
if: always()
env:
# run linter on everything to catch preexisting problems
Expand All @@ -58,3 +58,4 @@ jobs:
VALIDATE_JSCPD: false
VALIDATE_PYTHON_MYPY: false
SHELLCHECK_OPTS: "-e SC1090"
FILTER_REGEX_EXCLUDE: .*tests/.*.(json|zip|sol)
3 changes: 2 additions & 1 deletion .github/workflows/pylint.yml
Expand Up @@ -36,7 +36,7 @@ jobs:
cp pyproject.toml .github/linters

- name: Pylint
uses: docker://github/super-linter:v4
uses: github/super-linter/slim@v4
if: always()
env:
# run linter on everything to catch preexisting problems
Expand All @@ -47,3 +47,4 @@ jobs:
VALIDATE_PYTHON: true
VALIDATE_PYTHON_PYLINT: true
PYTHON_PYLINT_CONFIG_FILE: pyproject.toml
FILTER_REGEX_EXCLUDE: .*tests/.*.(json|zip|sol)