Skip to content

Commit

Permalink
Lint all content (#324)
Browse files Browse the repository at this point in the history
* Fix markdown table
* Always lint all files in order to avoid having files not linted when changes are pushed quickly
* Disable copy/paste detector for check-in linking page
* Disable copy/paste detector for check-in IdP page
  • Loading branch information
gwarf committed Sep 16, 2021
1 parent 5999040 commit e63cf1b
Show file tree
Hide file tree
Showing 5 changed files with 231 additions and 151 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
fetch-depth: 0

# Runs the Super-Linter action
- name: Run Super-Linter on new changes
- name: Run Super-Linter
uses: docker://ghcr.io/github/super-linter:slim-v4
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MARKDOWN_CONFIG_FILE: .markdownlint.json
# Only check new or edited files
VALIDATE_ALL_CODEBASE: false
# Always check all the content
VALIDATE_ALL_CODEBASE: true
# Debug super-linter
ACTIONS_RUNNER_DEBUG: true
ACTIONS_RUNNER_DEBUG: false
# Fail on errors
DISABLE_ERRORS: false
FILTER_REGEX_EXCLUDE: "(.*binaries/.*)|(.*layouts/.*)|(.*/egi.js)"
FILTER_REGEX_EXCLUDE: "(.*layouts/.*)|(.*/egi.js)"
Loading

0 comments on commit e63cf1b

Please sign in to comment.