Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ updates:
interval: "daily"
time: "03:00"
timezone: "Europe/Berlin"
reviewers:
- "github-actions"
pull-request-branch-name:
separator: "-"

Expand All @@ -20,8 +18,6 @@ updates:
interval: "daily"
time: "03:00"
timezone: "Europe/Berlin"
reviewers:
- "github-actions"
pull-request-branch-name:
separator: "-"
# https://github.com/dependabot/dependabot-core/issues/5226#issuecomment-1179434437
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/00-scan-secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id: extract_branch

- name: 🐷 TruffleHog OSS
uses: trufflesecurity/trufflehog@v3.16.4
uses: trufflesecurity/trufflehog@v3.17.0
with:
path: ./
base: ${{ steps.extract_branch.outputs.branch-name }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/01-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- name: 🔄 Init Cache
uses: ./.github/actions/npm-cache

- name: ⚡ Run Lint
run: npm run lint

- name: ⚡ Run Test
run: npm run test

Expand Down
8 changes: 5 additions & 3 deletions .htmlvalidate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"extends": ["html-validate:document", "html-validate:recommended"],

"rules": {
"void-style": ["warn", { "style": "selfclosing" }],
"require-sri": ["error", { "target": "crossorigin" }]
"require-sri": ["error", { "target": "crossorigin" }],
"no-trailing-whitespace": ["off"],
"doctype-style": ["off"],
"element-name": ["error", { "whitelist": ["dialog"] }],
"missing-doctype": ["off"]
}
}
217 changes: 25 additions & 192 deletions .pa11yci

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ dependencyGraph.json
source/js/*.min.js*
package-lock.json
*.hbs
out/
6 changes: 5 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"stylelint-config-prettier"
],
"rules": {
"order/properties-alphabetical-order": null,
"scss/operator-no-newline-after": null,
"declaration-empty-line-before": null,
"selector-no-qualifying-type": null,
"selector-class-pattern": null,
"scss/dollar-variable-pattern": null,
Expand All @@ -14,6 +17,7 @@
"declaration-property-value-disallowed-list": null,
"scss/percent-placeholder-pattern": null,
"scss/at-mixin-pattern": null,
"order/properties-alphabetical-order": null
"order/properties-alphabetical-order": null,
"scss/at-import-partial-extension": null
}
}
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"editorconfig.editorconfig",
"henrynguyen5-vsc.vsc-nvm",
"streetsidesoftware.code-spell-checker"
"streetsidesoftware.code-spell-checker",
"html-validate.vscode-html-validate"
]
}
Loading