Go to file
GongXudong b5636db435 add wrap_euler_angle_pre_process, LICENSE 2025-10-13 16:25:15 +08:00
configs/sys_id initial commit 2025-10-09 21:27:13 +08:00
scripts add wrap_euler_angle_pre_process, LICENSE 2025-10-13 16:25:15 +08:00
src/a430sysid add wrap_euler_angle_pre_process, LICENSE 2025-10-13 16:25:15 +08:00
tests/envs initial commit 2025-10-09 21:27:13 +08:00
.gitignore initial commit 2025-10-09 21:27:13 +08:00
.pre-commit-config.yaml initial commit 2025-10-09 21:27:13 +08:00
.python-version initial commit 2025-10-09 21:27:13 +08:00
LICENSE add wrap_euler_angle_pre_process, LICENSE 2025-10-13 16:25:15 +08:00
README.md add wrap_euler_angle_pre_process, LICENSE 2025-10-13 16:25:15 +08:00
main.py initial commit 2025-10-09 21:27:13 +08:00
pyproject.toml initial commit 2025-10-09 21:27:13 +08:00
uv.lock initial commit 2025-10-09 21:27:13 +08:00

README.md

a430sysid

Develop

Prepare python environment

cd a430sysid
uv sync

Pre-commit

# Install pre-commit
pre-commit install

# Run
pre-commit run --all-files  # run all hooks on all files
pre-commit run <HOOK_ID> --all-files # run one hook on all files
pre-commit run --files <PATH_TO_FILE>  # run all hooks on a file
pre-commit run <HOOK_ID> --files <PATH_TO_FILE> # run one hook on a file

# Commit
git add .
git commit -m <MESSAGE>

# Commit without hooks
git commit -m <MESSAGE> --no-verify

# update pre-commit hook
pre-commit autoupdate