Skip to content

Commit 54021ed

Browse files
committed
Merge branch 'main' into dbux-3
2 parents a2b9277 + 25bf124 commit 54021ed

40 files changed

+2458
-2851
lines changed

.github/workflows/00-scan-secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id: extract_branch
1818

1919
- name: 🐷 TruffleHog OSS
20-
uses: trufflesecurity/trufflehog@v3.16.4
20+
uses: trufflesecurity/trufflehog@v3.17.0
2121
with:
2222
path: ./
2323
base: ${{ steps.extract_branch.outputs.branch-name }}

.github/workflows/01-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache
1616

17+
- name: ⚡ Run Lint
18+
run: npm run lint
19+
1720
- name: ⚡ Run Test
1821
run: npm run test
1922

.htmlvalidate.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"extends": ["html-validate:document", "html-validate:recommended"],
3-
43
"rules": {
5-
"void-style": ["warn", { "style": "selfclosing" }],
6-
"require-sri": ["error", { "target": "crossorigin" }]
4+
"require-sri": ["error", { "target": "crossorigin" }],
5+
"no-trailing-whitespace": ["off"],
6+
"doctype-style": ["off"],
7+
"element-name": ["error", { "whitelist": ["dialog"] }],
8+
"missing-doctype": ["off"]
79
}
810
}

.pa11yci

Lines changed: 25 additions & 192 deletions
Large diffs are not rendered by default.

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ dependencyGraph.json
1212
source/js/*.min.js*
1313
package-lock.json
1414
*.hbs
15+
out/

.stylelintrc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"stylelint-config-prettier"
55
],
66
"rules": {
7+
"order/properties-alphabetical-order": null,
8+
"scss/operator-no-newline-after": null,
9+
"declaration-empty-line-before": null,
710
"selector-no-qualifying-type": null,
811
"selector-class-pattern": null,
912
"scss/dollar-variable-pattern": null,
@@ -14,6 +17,7 @@
1417
"declaration-property-value-disallowed-list": null,
1518
"scss/percent-placeholder-pattern": null,
1619
"scss/at-mixin-pattern": null,
17-
"order/properties-alphabetical-order": null
20+
"order/properties-alphabetical-order": null,
21+
"scss/at-import-partial-extension": null
1822
}
1923
}

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"recommendations": [
33
"editorconfig.editorconfig",
44
"henrynguyen5-vsc.vsc-nvm",
5-
"streetsidesoftware.code-spell-checker"
5+
"streetsidesoftware.code-spell-checker",
6+
"html-validate.vscode-html-validate"
67
]
78
}

0 commit comments

Comments
 (0)