-
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/lifecycle-api
- Loading branch information
Showing
167 changed files
with
16,663 additions
and
21,037 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
{ | ||
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-20.04", | ||
"settings": { | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[markdown]": { | ||
"editor.wordWrap": "on" | ||
} | ||
}, | ||
"extensions": [ | ||
"esbenp.prettier-vscode" | ||
], | ||
"forwardPorts": [3000], | ||
"postCreateCommand": ["yarn", "install"], | ||
"waitFor": "postCreateCommand", | ||
"features": { | ||
"node": { | ||
"version": "18" | ||
} | ||
} | ||
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-20.04", | ||
"settings": { | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[markdown]": { | ||
"editor.wordWrap": "on" | ||
} | ||
}, | ||
"extensions": ["esbenp.prettier-vscode"], | ||
"forwardPorts": [3000], | ||
"postCreateCommand": ["pnpm", "install"], | ||
"waitFor": "postCreateCommand", | ||
"features": { | ||
"node": { | ||
"version": "20" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
root = true | ||
|
||
[*] | ||
insert_final_newline = true | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_style = space | ||
|
||
[*.{ts,md,mdx,css,json,yml}] | ||
indent_size = 2 | ||
tab_width = 2 | ||
|
||
[*.{ts,mdx,css,json,yml}] | ||
max_line_length = 100 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Format check" | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
format: | ||
# run on all push events or on PR syncs not from the same repo | ||
if: github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v3 | ||
- name: Set up Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: "pnpm" | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: Check format | ||
run: pnpm run format:check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,4 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Spell check | ||
uses: crate-ci/[email protected] | ||
with: | ||
config: ./.typos.toml | ||
uses: crate-ci/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
/.docusaurus | ||
/.vscode | ||
/.yarn | ||
/build | ||
/node_modules | ||
/.pnp* | ||
/*.js | ||
/*.js.map | ||
/config/*.js | ||
/.meta | ||
pnpm-lock.yaml | ||
docs/versioned | ||
*.md | ||
*.mdx | ||
!README.md | ||
!CONTRIBUTING.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
{ | ||
"printWidth": 100, | ||
"proseWrap": "always", | ||
"overrides": [ | ||
{ | ||
"files": "*.md", | ||
"options": { | ||
"parser": "mdx" | ||
} | ||
} | ||
] | ||
"arrowParens": "always", | ||
"singleQuote": false, | ||
"semi": true, | ||
"trailingComma": "es5" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.