Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto committed Feb 17, 2024
1 parent 0b7eaa8 commit fc4d21a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 20 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
{
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: process.env.NEW_VERSION,
tag_name: `v${process.env.NEW_VERSION}`,
previous_tag_name: '${{ steps.github_releases.outputs.result }}',
}
);
return notes.data.body;
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Dependabot autohhjmerge
name: Dependabot auto merge
on: pull_request

permissions:
Expand All @@ -21,4 +21,3 @@ jobs:
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ repos:
rev: "v0.1.0"
hooks:
- id: biome-check
additional_dependencies: ["@biomejs/[email protected].2"]
additional_dependencies: ["@biomejs/[email protected].3"]

Check warning on line 6 in .pre-commit-config.yaml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (biomejs)
11 changes: 1 addition & 10 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"plugins": ["prettier-plugin-astro"],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
"$schema": "https://json.schemastore.org/prettierrc"
}
6 changes: 1 addition & 5 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
"recommendations": [
"tauri-apps.tauri-vscode",
"rust-lang.rust-analyzer",
"astro-build.astro-vscode"
],
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"],
"unwantedRecommendations": []
}
2 changes: 1 addition & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"rust",
"typescript"
],
"words": ["Autoprefix", "gtag", "lucide", "serde"]
"words": ["Autoprefix", "gtag", "lucide", "preact", "serde"]
}

0 comments on commit fc4d21a

Please sign in to comment.