Skip to content

Commit e83286a

Browse files
authored
Merge pull request #5 from nofusscomputing/initial-migration
2 parents a137498 + 5114323 commit e83286a

File tree

121 files changed

+158438
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+158438
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
3+
name: 'CI'
4+
5+
6+
on:
7+
push:
8+
branches:
9+
- '**'
10+
tags:
11+
- '*'
12+
13+
jobs:
14+
15+
16+
mkdocs:
17+
name: 'MKDocs'
18+
permissions:
19+
pull-requests: write
20+
contents: write
21+
statuses: write
22+
checks: write
23+
actions: write
24+
uses: nofusscomputing/action_mkdocs/.github/workflows/reusable_mkdocs.yaml@development
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
3+
name: Pull Requests
4+
5+
6+
on:
7+
pull_request: {}
8+
9+
10+
jobs:
11+
12+
lint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- name: Install yamllint
18+
run: pip install yamllint
19+
20+
- name: Lint YAML files
21+
run: yamllint ${PWD}/
22+
23+
24+
pull-request:
25+
name: pull-request
26+
uses: nofusscomputing/action_pull_requests/.github/workflows/pull-requests.yaml@development

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Temp Files
2+
*.tmp.*

.gitmodules

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[submodule "website-template"]
2+
path = website-template
3+
url = https://gitlab.com/nofusscomputing/infrastructure/website-template.git
4+
branch = development
5+
[submodule "gitlab-ci"]
6+
path = gitlab-ci
7+
url = https://gitlab.com/nofusscomputing/projects/gitlab-ci.git
8+
branch = development

.vscode/settings.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"linter.linters": {
3+
"yamllint": {
4+
"capabilities": [
5+
"ignore-line"
6+
],
7+
"command": [
8+
"yamllint",
9+
"--format",
10+
"parsable",
11+
[
12+
"$config",
13+
"--config-file",
14+
"$config"
15+
],
16+
"-"
17+
],
18+
"configFiles": [
19+
".yamllint.yml",
20+
".yamllint.yaml",
21+
".yamllint"
22+
],
23+
"enabled": true,
24+
"languages": [
25+
"yaml"
26+
],
27+
"name": "yamllint",
28+
"url": "https://github.com/adrienverge/yamllint"
29+
}
30+
},
31+
"editor.detectIndentation": false,
32+
"editor.indentSize": "tabSize",
33+
"editor.tabSize": 2,
34+
"files.eol": "\n"
35+
}

.yamllint

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
3+
# extends: default
4+
5+
6+
ignore:
7+
- '.github/'
8+
- '**/crd/**'
9+
- mkdocs.yml
10+
- '*PrometheusRule*'
11+
- '**/source/**'
12+
13+
rules:
14+
braces:
15+
level: error
16+
max-spaces-inside: 1
17+
min-spaces-inside: 1
18+
min-spaces-inside-empty: 0
19+
max-spaces-inside-empty: 0
20+
21+
brackets:
22+
level: error
23+
max-spaces-inside: 1
24+
min-spaces-inside: 1
25+
min-spaces-inside-empty: 0
26+
max-spaces-inside-empty: 0
27+
28+
colons:
29+
level: warning
30+
max-spaces-after: 1
31+
32+
commas:
33+
level: warning
34+
35+
comments:
36+
level: error
37+
require-starting-space: true
38+
ignore-shebangs: true
39+
min-spaces-from-content: 4
40+
41+
comments-indentation:
42+
level: error
43+
44+
document-end:
45+
level: error
46+
present: false
47+
48+
document-start:
49+
level: error
50+
present: true
51+
52+
empty-lines:
53+
level: error
54+
max: 3
55+
max-start: 0
56+
max-end: 0
57+
58+
hyphens:
59+
level: error
60+
max-spaces-after: 1
61+
62+
indentation:
63+
level: error
64+
spaces: 2
65+
indent-sequences: true
66+
check-multi-line-strings: true
67+
68+
line-length:
69+
level: warning
70+
max: 100
71+
allow-non-breakable-inline-mappings: true
72+
73+
new-lines:
74+
level: error
75+
type: unix
76+
77+
truthy: disable

docs/articles/index.md

Whitespace-only changes.

docs/contact.md

Whitespace-only changes.

docs/index.md

Whitespace-only changes.

docs/operations/index.md

Whitespace-only changes.

0 commit comments

Comments
 (0)