Skip to content

Commit 669cf6a

Browse files
committed
chore: sync with template
1 parent 55a02ba commit 669cf6a

28 files changed

+468
-343
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# ----------------------------------------------- #
2+
# Note: this file originates in template-template #
3+
# ----------------------------------------------- #
4+
15
root = true
26

37
[*]

.env

Whitespace-only changes.

.github/FUNDING.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# ----------------------------------------------- #
2+
# Note: this file originates in template-template #
3+
# ----------------------------------------------- #
4+
5+
github: [ahmadnassri]

.github/auto-merge.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/dependabot-template.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# ---------------------------------------------------- #
2+
# Note: this file originates in template-action-docker #
3+
# ---------------------------------------------------- #
4+
5+
version: 2
6+
updates:
7+
- package-ecosystem: npm
8+
open-pull-requests-limit: 10
9+
directory: /action
10+
commit-message:
11+
prefix: build
12+
prefix-development: chore
13+
include: scope
14+
schedule:
15+
interval: daily
16+
time: "10:00"
17+
timezone: America/Toronto
18+
19+
- package-ecosystem: docker
20+
open-pull-requests-limit: 10
21+
directory: /
22+
commit-message:
23+
prefix: build
24+
prefix-development: chore
25+
include: scope
26+
schedule:
27+
interval: daily
28+
time: "10:00"
29+
timezone: America/Toronto

.github/dependabot.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
version: 2
22
updates:
3-
- package-ecosystem: npm
3+
- package-ecosystem: github-actions
44
open-pull-requests-limit: 10
5-
directory: /action
5+
directory: /
66
commit-message:
7-
prefix: build
7+
prefix: chore
88
prefix-development: chore
99
include: scope
1010
schedule:
1111
interval: daily
12+
time: "10:00"
13+
timezone: America/Toronto

.github/linters/.checkov.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# ----------------------------------------------- #
2+
# Note: this file originates in template-template #
3+
# ----------------------------------------------- #
4+
5+
quiet: true
6+
skip-check:
7+
- CKV_DOCKER_2
8+
- CKV_GHA_3
9+
- BC_DKR_3
10+
- CKV_GIT_1
11+
- CKV_GIT_5
12+
- CKV_GIT_6

.github/linters/.commit-lint.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1+
# ----------------------------------------------- #
2+
# Note: this file originates in template-template #
3+
# ----------------------------------------------- #
4+
15
extends:
26
- "@commitlint/config-conventional"
7+
38
rules:
4-
body-max-line-length: [2, 'always', 200]
9+
body-max-line-length: [2, "always", 200]

.github/linters/.markdown-lint.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# ----------------------------------------------- #
2+
# Note: this file originates in template-template #
3+
# ----------------------------------------------- #
4+
15
# Heading levels should only increment by one level at a time
26
MD001: false
37

@@ -36,7 +40,7 @@ MD012:
3640

3741
# Line length
3842
MD013:
39-
line_length: 180
43+
line_length: 360
4044
strict: true
4145
stern: true
4246

@@ -60,7 +64,6 @@ MD022:
6064
lines_above: 1
6165
lines_below: 1
6266

63-
6467
# Headings must start at the beginning of the line
6568
MD023: true
6669

@@ -127,7 +130,7 @@ MD039: true
127130
MD040: true
128131

129132
# First line in file should be a top level heading
130-
MD041: true
133+
MD041: false
131134

132135
# No empty links
133136
MD042: true

.github/linters/.mega-linter.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# ----------------------------------------------- #
2+
# Note: this file originates in template-template #
3+
# ----------------------------------------------- #
4+
5+
DISABLE:
6+
- COPYPASTE
7+
8+
DISABLE_LINTERS:
9+
- REPOSITORY_TRIVY
10+
- SPELL_CSPELL
11+
- JSON_PRETTIER
12+
- YAML_PRETTIER
13+
- JAVASCRIPT_PRETTIER
14+
15+
LOG_LEVEL: INFO
16+
PRINT_ALPACA: false
17+
CONFIG_REPORTER: false
18+
SHOW_ELAPSED_TIME: true
19+
FLAVOR_SUGGESTIONS: false
20+
VALIDATE_ALL_CODEBASE: false
21+
IGNORE_GENERATED_FILES: true
22+
FILTER_REGEX_EXCLUDE: (dist/*|README.md|test/fixtures/*|vendor/*|/schemas/*)
23+
24+
MARKDOWN_MARKDOWNLINT_CONFIG_FILE: .markdown-lint.yml
25+
REPOSITORY_CHECKOV_ARGUMENTS: [--skip-path, schemas]

0 commit comments

Comments
 (0)