Skip to content

Commit d7a2458

Browse files
committed
wip
1 parent 2648ff2 commit d7a2458

File tree

13 files changed

+128
-16
lines changed

13 files changed

+128
-16
lines changed

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@
22
# https://editor.timseverien.com/#config
33
root = true
44

5+
[*.{md}]
6+
charset = utf-8
7+
end_of_line = lf
8+
tab_width = 2
9+
trim_trailing_whitespace = true
10+
max_line_length = 200
11+
512
[*.{yml,yaml}]
613
charset = utf-8
714
end_of_line = lf
815
insert_final_newline = true
916
tab_width = 2
1017
trim_trailing_whitespace = true
18+
max_line_length = 100

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
# They will have to be merged manually by a maintainer
77
- package-ecosystem: github-actions
88
directory: /
9-
open-pull-requests-limit: 10 # avoid spam, if no one reacts
9+
open-pull-requests-limit: 10 # avoid spam, if no one reacts
1010
schedule:
1111
interval: weekly
1212
time: '11:00'

.github/workflows/actions-lint.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
on: push
3+
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: rethab/actions-lint@v1
10+
with:
11+
files: .github/workflows/deploy.yml

.github/workflows/ci.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
11
---
22
name: CI
3-
on: # yamllint disable-line rule:truthy
3+
on:
44
push:
55
jobs:
66
ci-lint:
77
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
811
steps:
912
- uses: actions/checkout@v3
13+
1014
- name: yaml-lint
1115
uses: ibiqlik/action-yamllint@v3
16+
1217
- name: EditorConfig-Action
1318
uses: zbeekman/EditorConfig-Action@v1.1.1
19+
20+
- name: Vale Linter
21+
uses: errata-ai/vale-action@v2.1.0
22+
23+
- name: Vale Action
24+
uses: errata-ai/vale-action@reviewdog
25+
26+
- name: Vale Action
27+
uses: errata-ai/vale-action@reviewdog
28+
29+
- name: typos-action
30+
uses: crate-ci/typos@v1.21.0

.github/workflows/spellchecker.yml

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
megalinter-reports/

.prettierrc.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
trailingComma: 'es5'
3+
semi: false
4+
singleQuote: true

.vale.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
StylesPath = .vale/styles/
2+
3+
MinAlertLevel = suggestion
4+
5+
Packages = RedHat
6+
7+
[*.md]
8+
BasedOnStyles = Vale, RedHat

.vale/styles/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Vale styles for repository
2+
3+
Please examine the files

.yamllint.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
yaml-files:
3+
- '*.yaml'
4+
- '*.yml'
5+
- '.yamllint'
6+
7+
ignore: |
8+
megalinter-reports
9+
10+
rules:
11+
anchors: enable
12+
braces: enable
13+
brackets: enable
14+
colons: enable
15+
commas: enable
16+
comments:
17+
min-spaces-from-content: 1
18+
comments-indentation: enable
19+
document-end: disable
20+
document-start:
21+
level: warning
22+
empty-lines: enable
23+
empty-values: disable
24+
float-values: disable
25+
hyphens: enable
26+
indentation: enable
27+
key-duplicates: enable
28+
key-ordering: disable
29+
line-length:
30+
max: 100
31+
allow-non-breakable-words: true
32+
allow-non-breakable-inline-mappings: false
33+
level: warning
34+
new-line-at-end-of-file: enable
35+
new-lines: enable
36+
octal-values: disable
37+
quoted-strings: disable
38+
trailing-spaces: enable
39+
truthy:
40+
allowed-values: ['true', 'false']
41+
check-keys: false # this one is a nightmare GitHub Actions

0 commit comments

Comments
 (0)