feat: ignore specific pylint warnings #33
This file contains 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: Linter | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Lint Lua Files | |
uses: NTBBloodbath/selene-action@v1.0.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --display-style=quiet . | |
- name: Lint GH Actions, Markdown, Python, and Shell Files | |
uses: super-linter/super-linter/slim@v5 | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_GITHUB_ACTIONS: true | |
VALIDATE_MARKDOWN: true | |
VALIDATE_PYTHON_PYLINT: true | |
VALIDATE_SHELL_SHFMT: true |