-
-
Notifications
You must be signed in to change notification settings - Fork 17
80 lines (75 loc) · 2.31 KB
/
linter.yaml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
name: SuperLinter 🦸♀️
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
workflow_dispatch:
workflow_call:
inputs:
lintr_error_on_lint:
description: Produce an error when lints are found
required: false
type: boolean
default: true
concurrency:
group: lint-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: SuperLinter 🦸♂️
runs-on: ubuntu-latest
if: >
!contains(github.event.commits[0].message, '[skip linter]')
&& github.event.pull_request.draft == false
steps:
- name: Checkout repo 🛎
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Override SuperLinter configs 💾
run: |
# Override markdownlint default config
[ ! -e .markdownlint.yaml ] && cat > .markdownlint.yaml <<EOF
###############
# Rules by id #
###############
MD004: false # Unordered list style
MD007:
indent: 2 # Unordered list indentation
MD013:
line_length: 800 # Line length
MD026:
punctuation: ".,;:!。,;:" # List of not allowed
MD029: false # Ordered list item prefix
MD033: false # Allow inline HTML
MD036: false # Emphasis used instead of a heading
#################
# Rules by tags #
#################
blank_lines: true # Error on blank lines
EOF
shell: bash
- name: Lint Code Base 🧶
uses: github/super-linter/slim@v5
env:
LINTER_RULES_PATH: /
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: NEWS.md|design/.*|testthat/_snaps/.*
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
VALIDATE_BASH: true
VALIDATE_DOCKERFILE: true
VALIDATE_MARKDOWN: true
MARKDOWN_CONFIG_FILE: .markdownlint.yaml
VALIDATE_R: true
VALIDATE_YAML: true
LINTR_ERROR_ON_LINT: ${{ inputs.lintr_error_on_lint }}