aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2026-01-16 10:28:05 +0800
committerGitHub <noreply@github.com>2026-01-16 10:28:05 +0800
commit8157aa6550d3926924fe75b1f98f505c426094bf (patch)
tree18c38e3420952637c7a2aa41f60f87a6a263fadd /.pre-commit-config.yaml
parent88d2b67870203acc098ae09e3cc33009c4e6b6ad (diff)
parentf1b297cca97b18e179e056233ffba146eab784cf (diff)
downloadDropOut-8157aa6550d3926924fe75b1f98f505c426094bf.tar.gz
DropOut-8157aa6550d3926924fe75b1f98f505c426094bf.zip
Merge pull request #46 from HsiangNianian/feat/add-pre-commit-support
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml49
1 files changed, 49 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000..0929a81
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,49 @@
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v6.0.0
+ hooks:
+ - id: check-ast
+ - id: check-case-conflict
+ - id: check-json
+ - id: check-toml
+ - id: check-yaml
+ - id: fix-byte-order-marker
+
+ - repo: https://github.com/astral-sh/ruff-pre-commit
+ rev: v0.14.13
+ hooks:
+ - id: ruff-check
+ types_or: [ python, pyi ]
+ args: [ --fix ]
+ - id: ruff-format
+ types_or: [ python, pyi ]
+
+ - repo: local
+ hooks:
+ - id: cargo-fmt
+ name: cargo fmt
+ entry: bash -c 'cd src-tauri && cargo fmt --all'
+ language: system
+ files: ^src-tauri/.*\.rs$
+ pass_filenames: false
+
+ - id: cargo-clippy
+ name: cargo clippy
+ entry: bash -c 'cd src-tauri && cargo clippy --all-targets --all-features -- -D warnings'
+ language: system
+ files: ^src-tauri/.*\.rs$
+ pass_filenames: false
+
+ - id: oxlint
+ name: oxlint (svelte/ts/js)
+ entry: pnpm --dir ui run lint:fix
+ language: system
+ files: ^ui/
+ pass_filenames: false
+
+ - id: oxfmt
+ name: oxfmt (format)
+ entry: pnpm --dir ui run format
+ language: system
+ files: ^ui/
+ pass_filenames: false \ No newline at end of file