Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure Renovate #10

Merged
merged 11 commits into from
Jun 1, 2024
Merged
15 changes: 15 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"groupName": "all",
"semanticCommits": "disabled",
"separateMajorMinor": false,
"suppressNotifications": [
"prEditedNotification"
],
"pre-commit": {
"enabled": true
}
}
12 changes: 6 additions & 6 deletions .github/workflows/typecheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: "3.8"
# cache: pip
# cache-dependency-path: "**/requirements*.txt"
# - run: pip install -r requirements.txt
# - uses: actions/setup-python@v4
# with:
# python-version: "3.8"
# cache: pip
# cache-dependency-path: "**/requirements*.txt"
# - run: pip install -r requirements.txt
- uses: jakebailey/pyright-action@v1
5 changes: 3 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ repos:
rev: v2.13.0
hooks:
# Moves entire sections, I don't like that >:(
# https://github.com/macisamuele/language-formatters-pre-commit-hooks/issues/231
# - id: pretty-format-toml
# args: [--autofix]
# args: [--autofix, --trailing-commas, --inline-comment-spaces, "1", --no-sort]
- id: pretty-format-yaml
args: [--autofix, --indent, "2", --offset, "2", --preserve-quotes, --line-width, "100"]
- id: pretty-format-ini
Expand All @@ -38,7 +39,7 @@ repos:
hooks:
- id: autopep8
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0 # Must match .pre-commit-config.yaml
rev: v3.1.0 # Must match requirements-dev.txt
hooks:
- id: add-trailing-comma
- repo: https://github.com/RobertCraigie/pyright-python
Expand Down
1 change: 1 addition & 0 deletions Dolphin scripts/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ add-trailing-comma>=3.1.0 # Must match .pre-commit-config.yaml
autopep8>=2.1.1 # Must match .pre-commit-config.yaml
pre-commit
ruff>=0.4.5 # Must match .pre-commit-config.yaml
typing_extensions
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Free Look: <https://wiki.dolphin-emu.org/index.php?title=Free_Look>

Watch and modify useful memory regions. Basically practice tools.

- [Dolphin Memory Engine (DME) Releases](<https://github.com/aldelaro5/Dolphin-memory-engine/releases>)
- [Dolphin Memory Engine (DME) Releases](https://github.com/aldelaro5/Dolphin-memory-engine/releases)
- [Tables / Dolphin Memory Watches (DMW)](/Dolphin%20Memory%20Watches%20(DMW))
- [Action Replay / Gecko Codes](/Dolphin%20Memory%20Watches%20(DMW)/README.md#action-replay--gecko-codes)

Expand Down
Loading