JavaScript (v3): Lint - Add eslint-disable to files that haven't been touched since the linter was turned on. #1028
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint Python | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| black: | |
| name: Flake8 Linting & Black Formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v41 | |
| with: | |
| files: "**.py" | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.9 | |
| - name: Install dependencies | |
| run: | | |
| pip install black==23.9.1 pylint | |
| - name: Run Black & Pylint | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| run: | | |
| changed_files=(${{steps.changed-files.outputs.all_changed_files}}) | |
| black "${changed_files[@]}" | |
| pylint --rcfile .github/linters/.python-lint "${changed_files[@]}" |