-
-
Notifications
You must be signed in to change notification settings - Fork 484
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 renovate/rust-toolchain
- Loading branch information
Showing
1,008 changed files
with
15,341 additions
and
14,733 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,2 +1,10 @@ | ||
# https://EditorConfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 4 |
Validating CODEOWNERS rules …
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,17 @@ | ||
# Default to project owner @Boshen | ||
|
||
@Boshen | ||
|
||
# Ignore lock files | ||
|
||
Cargo.lock | ||
pnpm-lock.yaml | ||
|
||
# Crates | ||
|
||
/crates/oxc_transformer @overlookmotel @dunqing | ||
/crates/oxc_semantic @Boshen @dunqing | ||
/crates/oxc_data_structures @overlookmotel | ||
/crates/oxc_traverse @overlookmotel | ||
/crates/oxc_isolated_declarations @dunqing | ||
/tasks/ast_tools |
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: CI VSCode | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened, synchronize] | ||
paths: | ||
- "pnpm-lock.yaml" | ||
- "crates/oxc_language_server/**" | ||
- "editors/vscode/**" | ||
- ".github/worfkflows/ci_vscode.yml" | ||
push: | ||
branches: | ||
- main | ||
- "renovate/**" | ||
paths: | ||
- "pnpm-lock.yaml" | ||
- "crates/oxc_language_server/**" | ||
- "editors/vscode/**" | ||
- ".github/worfkflows/ci_vscode.yml" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | ||
cancel-in-progress: ${{ github.ref_name != 'main' }} | ||
|
||
jobs: | ||
compile: | ||
name: Compile | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: taiki-e/checkout-action@v1 | ||
- uses: ./.github/actions/pnpm | ||
|
||
- name: Compile VSCode | ||
working-directory: editors/vscode | ||
run: pnpm run compile | ||
|
||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: taiki-e/checkout-action@v1 | ||
- uses: ./.github/actions/pnpm | ||
|
||
- name: Lint VSCode | ||
working-directory: editors/vscode | ||
run: pnpm run lint | ||
|
||
type-check: | ||
name: Type-Check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: taiki-e/checkout-action@v1 | ||
- uses: ./.github/actions/pnpm | ||
|
||
- name: Type-Check VSCode | ||
working-directory: editors/vscode | ||
run: pnpm run type-check | ||
|
||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: taiki-e/checkout-action@v1 | ||
- uses: ./.github/actions/pnpm | ||
|
||
- name: Test VSCode | ||
working-directory: editors/vscode | ||
run: xvfb-run -a pnpm run test |
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
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,7 @@ | ||
{ | ||
"recommendations": [ | ||
"rust-lang.rust-analyzer", // official rust extension | ||
"vadimcn.vscode-lldb", // for debugging | ||
"tamasfe.even-better-toml" // toml syntax | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.