-
-
Notifications
You must be signed in to change notification settings - Fork 481
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 chore/use-import-type-docs
- Loading branch information
Showing
1,501 changed files
with
34,288 additions
and
106,798 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
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,5 @@ | ||
--- | ||
biome_configuration: patch | ||
--- | ||
|
||
# This is a test /2 |
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.
File renamed without changes.
File renamed without changes.
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,58 +1,60 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"timezone": "Europe/Gibraltar", | ||
"schedule": [ | ||
"before 9am on monday" | ||
], | ||
"extends": [ | ||
"config:best-practices" | ||
], | ||
"rangeStrategy": "bump", | ||
"lockFileMaintenance": { | ||
"enabled": false | ||
}, | ||
"assignees": [ | ||
"@biomejs/maintainers", | ||
"@biomejs/core-contributors" | ||
], | ||
"packageRules": [ | ||
{ | ||
"groupName": "github-actions", | ||
"matchManagers": [ | ||
"github-actions" | ||
] | ||
}, | ||
{ | ||
"groupName": "Rust crates", | ||
"matchManagers": [ | ||
"cargo" | ||
], | ||
"matchFileNames": [ | ||
"crates/**", | ||
"xtask/**" | ||
], | ||
"ignoreDeps": [ | ||
"syn", | ||
"quote" | ||
] | ||
}, | ||
{ | ||
"groupName": "Website", | ||
"matchFileNames": [ | ||
"website/package.json" | ||
], | ||
"matchManagers": [ | ||
"npm" | ||
] | ||
}, | ||
{ | ||
"groupName": "@biomejs packages", | ||
"matchFileNames": [ | ||
"packages/**" | ||
], | ||
"matchManagers": [ | ||
"npm" | ||
] | ||
} | ||
] | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"timezone": "Europe/Gibraltar", | ||
"schedule": [ | ||
"before 9am on monday" | ||
], | ||
"extends": [ | ||
"config:best-practices" | ||
], | ||
"rangeStrategy": "bump", | ||
"lockFileMaintenance": { | ||
"enabled": false | ||
}, | ||
"assignees": [ | ||
"@biomejs/maintainers", | ||
"@biomejs/core-contributors" | ||
], | ||
"packageRules": [ | ||
{ | ||
"groupName": "github-actions", | ||
"matchManagers": [ | ||
"github-actions" | ||
] | ||
}, | ||
{ | ||
"groupName": "Rust crates", | ||
"matchManagers": [ | ||
"cargo" | ||
], | ||
"matchFileNames": [ | ||
"crates/**", | ||
"xtask/**" | ||
], | ||
"ignoreDeps": [ | ||
"syn", | ||
"quote", | ||
"hashbrown", | ||
"pulldown-cmark" | ||
] | ||
}, | ||
{ | ||
"groupName": "Website", | ||
"matchFileNames": [ | ||
"website/package.json" | ||
], | ||
"matchManagers": [ | ||
"npm" | ||
] | ||
}, | ||
{ | ||
"groupName": "@biomejs packages", | ||
"matchFileNames": [ | ||
"packages/**" | ||
], | ||
"matchManagers": [ | ||
"npm" | ||
] | ||
} | ||
] | ||
} |
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
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,30 @@ | ||
on: | ||
push: | ||
branches: [ main ] | ||
name: Create Release PR | ||
|
||
permissions: | ||
actions: write | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
prepare-release: | ||
if: "!contains(github.event.head_commit.message, 'chore: prepare release')" # Skip merges from releases | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Configure Git | ||
run: | | ||
git config --global user.name GitHub Actions | ||
git config user.email [email protected] | ||
- uses: knope-dev/action@407e9ef7c272d2dd53a4e71e39a7839e29933c48 # v2.1.0 | ||
with: | ||
version: 0.16.2 | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- run: knope prepare-release --verbose | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
continue-on-error: true |
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
Oops, something went wrong.