forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (28 loc) · 908 Bytes
/
super-linter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: General linting
on:
- push
- pull_request
jobs:
super-linter:
name: GitHub Super Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint code base
uses: docker://github/super-linter:v2.2.2
env:
# Listed but disabled linters would be nice to have.
# Python (supported using Pylint) and C/C++ (not supported) are
# handled separately due to the complexity of the settings.
# (The rest is simply disabled automatically as of v2.)
VALIDATE_BASH: false
VALIDATE_CSS: false
VALIDATE_DOCKER: false
VALIDATE_JAVASCRIPT_ES: true
VALIDATE_JAVASCRIPT_STANDARD: false
VALIDATE_JSON: true
VALIDATE_MD: false
VALIDATE_PERL: true
VALIDATE_POWERSHELL: true
VALIDATE_XML: true
VALIDATE_YAML: true