Skip to content

Commit 51541a0

Browse files
committed
Merge branch 'main' into dbux-3
2 parents 743a81a + 3a3300d commit 51541a0

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ indent_size = 4
1212
insert_final_newline = true
1313
trim_trailing_whitespace = true
1414

15-
[*.js]
15+
[*.{js,jsx,ts,tsx,mjs}]
1616
quote_type = single
1717

1818
[package.json]
@@ -21,6 +21,6 @@ quote_type = single
2121
indent_size = 2
2222
indent_style = space
2323

24-
[{*.yaml,*.yml}]
24+
[*.{yaml,yml,md}]
2525
indent_style = space
2626
indent_size = 2

.github/workflows/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ jobs:
3737

3838
deploy:
3939
uses: ./.github/workflows/02-deploy-gh-pages.yml
40-
if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui' }}
40+
if: ${{ github.actor != 'dependabot[bot]' && (github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui') }}
4141
needs: [lint, build]

.vscode/extensions.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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",
7+
"deque-systems.vscode-axe-linter"
68
]
79
}

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ We are committed to fostering a welcoming, respectful, and harassment-free envir
99
Please make sure that husky is installed correctly to validate your changes.
1010

1111
Moreover, you need to duplicate `.env.template` as `.env` and type your own email address. This ensures that you have the correct email set for this project.
12+
13+
### Conventions
14+
15+
Please be aware that we have some [code and git commit (message and branch naming) conventions](https://github.com/db-ui/core/blob/main/docs/conventions.adoc), that we ensure with some linting tools.

0 commit comments

Comments
 (0)