Skip to content

Commit 98c1d78

Browse files
committed
fix: more broken links
1 parent c36cd9f commit 98c1d78

File tree

220 files changed

+10664
-5022
lines changed

Some content is hidden

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

220 files changed

+10664
-5022
lines changed

.github/labeler.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
version: v1
22

33
labels:
4-
- label: 'feat'
4+
- label: "feat"
55
matcher:
6-
title: '^feat:.*'
7-
- label: 'fix'
6+
title: "^feat:.*"
7+
- label: "fix"
88
matcher:
9-
title: '^fix:.*'
10-
- label: 'chore'
9+
title: "^fix:.*"
10+
- label: "chore"
1111
matcher:
12-
title: '^chore:.*'
13-
- label: 'docs'
12+
title: "^chore:.*"
13+
- label: "docs"
1414
matcher:
15-
title: '^docs:.*'
15+
title: "^docs:.*"

.github/workflows/branch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- main
1010
tags:
11-
- 'v*'
11+
- "v*"
1212

1313
concurrency:
1414
group: ${{ github.workflow }}-${{ github.ref }}
@@ -30,8 +30,8 @@ permissions:
3030
statuses: write
3131

3232
env:
33-
NODE_NO_WARNINGS: '1'
34-
TURBO_TELEMETRY_DISABLED: '1'
33+
NODE_NO_WARNINGS: "1"
34+
TURBO_TELEMETRY_DISABLED: "1"
3535

3636
jobs:
3737
build:
@@ -102,4 +102,4 @@ jobs:
102102
103103
- name: Build Docker container
104104
run: |
105-
bun run docker
105+
bun run docker

.github/workflows/pr-settings.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ jobs:
3636
PR_SLACK_WEBHOOK_URL: op://platform/slack-webhooks/pr-webhook
3737

3838
- name: Send GitHub Action trigger data to Slack workflow with reviewers
39-
if: ${{ tojson(github.event.pull_request.requested_reviewers) != '[]' && !github.event.pull_request.draft }}
39+
if:
40+
${{ tojson(github.event.pull_request.requested_reviewers) != '[]' &&
41+
!github.event.pull_request.draft }}
4042
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
4143
with:
4244
webhook: ${{ env.PR_SLACK_WEBHOOK_URL }}
@@ -46,7 +48,8 @@ jobs:
4648
"message": "${{ github.event.pull_request.title }} (by ${{ github.event.pull_request.user.login }} and to be checked by ${{ join(github.event.pull_request.requested_reviewers.*.login, ', ') }}) -> ${{ github.event.pull_request.html_url }}"
4749
}
4850
49-
- name: Send GitHub Action trigger data to Slack workflow without reviewers
51+
- name:
52+
Send GitHub Action trigger data to Slack workflow without reviewers
5053
if: ${{ !github.event.pull_request.draft }}
5154
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
5255
with:

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "es5",
4+
"quoteProps": "as-needed",
5+
"arrowParens": "always",
6+
"proseWrap": "always"
7+
}

.vscode/settings.json

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
22
"typescript.tsdk": "node_modules/typescript/lib",
3-
"editor.defaultFormatter": "biomejs.biome",
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
44
"editor.formatOnSave": true,
5-
"editor.formatOnPaste": true,
65
"emmet.showExpandedAbbreviation": "never",
76
"editor.codeActionsOnSave": {
8-
"quickfix.biome": "explicit",
9-
"source.organizeImports.biome": "explicit"
7+
"source.fixAll": "explicit",
8+
"source.organizeImports": "explicit"
109
},
10+
"eslint.workingDirectories": [{ "mode": "auto" }],
1111
"[typescript]": {
12-
"editor.defaultFormatter": "biomejs.biome"
12+
"editor.defaultFormatter": "esbenp.prettier-vscode"
1313
},
1414
"[json]": {
15-
"editor.defaultFormatter": "biomejs.biome"
15+
"editor.defaultFormatter": "esbenp.prettier-vscode"
1616
},
1717
"[javascript]": {
18-
"editor.defaultFormatter": "biomejs.biome"
18+
"editor.defaultFormatter": "esbenp.prettier-vscode"
1919
},
2020
"[jsonc]": {
21-
"editor.defaultFormatter": "biomejs.biome"
21+
"editor.defaultFormatter": "esbenp.prettier-vscode"
2222
},
2323
"[typescriptreact]": {
24-
"editor.defaultFormatter": "biomejs.biome"
24+
"editor.defaultFormatter": "esbenp.prettier-vscode"
2525
},
2626
"[solidity]": {
2727
"editor.defaultFormatter": "NomicFoundation.hardhat-solidity"
@@ -53,7 +53,6 @@
5353
"githubPullRequests.defaultMergeMethod": "squash",
5454
"githubPullRequests.notifications": "pullRequests",
5555
"githubPullRequests.quickDiff": true,
56-
"sherlock.userId": "2e2829ed-26e5-4fb5-87e9-3d921da61e9f",
5756
"trailing-spaces.trimOnSave": true,
5857
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
5958
"typescript.inlayHints.parameterTypes.enabled": true,
@@ -81,5 +80,19 @@
8180
},
8281
"[mdx]": {
8382
"editor.defaultFormatter": "esbenp.prettier-vscode"
84-
}
83+
},
84+
"eslint.codeActionsOnSave.mode": "all",
85+
"eslint.lintTask.enable": true,
86+
"eslint.run": "onType",
87+
"i18n-ally.extract.autoDetect": true,
88+
"i18n-ally.namespace": true,
89+
"i18n-ally.sortKeys": true,
90+
"i18n-ally.sourceLanguage": "en",
91+
"i18n-ally.localesPaths": ["kit/dapp/messages"],
92+
"i18n-ally.keystyle": "nested",
93+
"i18n-ally.enabledFrameworks": ["next-intl"],
94+
"i18n-ally.pathMatcher": "{locale}.json",
95+
"i18n-ally.defaultNamespace": "",
96+
"i18n-ally.translate.engines": ["openai", "google"],
97+
"sherlock.previewLanguageTag": "en"
8598
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
1919
<a href="https://github.com/settlemint/docs/issues">Issues</a>
2020
<br />
21-
</div>
21+
</div>

biome.json

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

0 commit comments

Comments
 (0)