-
-
Notifications
You must be signed in to change notification settings - Fork 518
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/eslint-no-new-func
- Loading branch information
Showing
45 changed files
with
3,061 additions
and
2,200 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 +1,2 @@ | ||
github: [Boshen] | ||
open_collective: oxc |
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 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,24 @@ | ||
name: Check PR | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
jobs: | ||
pr: | ||
if: github.repository == 'oxc-project/oxc' | ||
name: Label and Check PR Title | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: taiki-e/checkout-action@v1 | ||
- uses: actions/labeler@v5 | ||
- name: Validate PR title | ||
uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
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 |
---|---|---|
|
@@ -33,9 +33,9 @@ ready: | |
|
||
# Clone or update submodules | ||
submodules: | ||
just clone-submodule tasks/coverage/test262 [email protected]:tc39/test262.git a15874163e6a4f19ee7cd3e47592af382af0f5fd | ||
just clone-submodule tasks/coverage/babel [email protected]:babel/babel.git 12619ffe5b0777edb0223304da1fdf8770d93e7c | ||
just clone-submodule tasks/coverage/typescript [email protected]:microsoft/TypeScript.git d8086f14b6b97c0df34a0cc2f56d4b5926a0c299 | ||
just clone-submodule tasks/coverage/test262 [email protected]:tc39/test262.git d62fa93c8f9ce5e687c0bbaa5d2b59670ab2ff60 | ||
just clone-submodule tasks/coverage/babel [email protected]:babel/babel.git 3bcfee232506a4cebe410f02042fb0f0adeeb0b1 | ||
just clone-submodule tasks/coverage/typescript [email protected]:microsoft/TypeScript.git a709f9899c2a544b6de65a0f2623ecbbe1394eab | ||
just clone-submodule tasks/prettier_conformance/prettier [email protected]:prettier/prettier.git 7142cf354cce2558f41574f44b967baf11d5b603 | ||
|
||
# Install git pre-commit to format files | ||
|
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,5 +1,5 @@ | ||
commit: 12619ffe | ||
commit: 3bcfee23 | ||
|
||
codegen_babel Summary: | ||
AST Parsed : 2100/2100 (100.00%) | ||
Positive Passed: 2100/2100 (100.00%) | ||
AST Parsed : 2101/2101 (100.00%) | ||
Positive Passed: 2101/2101 (100.00%) |
Oops, something went wrong.