Skip to content

2D array fix

2D array fix #666

Workflow file for this run

######################################
# Run Super Linter against code base #
######################################
name: Super Linter
on: [push, pull_request]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@main
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@main
env:
VALIDATE_ALL_CODEBASE: true
LINTER_RULES_PATH: /.prettierrc
VALIDATE_JAVA: false
VALIDATE_JAVASCRIPT_STANDARD: false
VALIDATE_CLANG_FORMAT: false
VALIDATE_JSCPD: false
DEFAULT_BRANCH: master
FILTER_REGEX_INCLUDE: .*\.(cpp|go|java|js|py|rb|swift)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}