2021-10-15 15:49:41 +08:00
|
|
|
# See https://pre-commit.com for more informatio
|
|
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2024-04-09 07:20:58 +08:00
|
|
|
rev: v4.6.0
|
2021-10-15 15:49:41 +08:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-yaml
|
|
|
|
- id: check-added-large-files
|
2024-08-07 17:51:13 +08:00
|
|
|
exclude: ^example/AlN-LDA/
|
2021-10-15 15:49:41 +08:00
|
|
|
|
2024-06-21 12:49:24 +08:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2024-09-24 07:30:16 +08:00
|
|
|
rev: v0.6.7
|
2021-10-15 15:49:41 +08:00
|
|
|
hooks:
|
2024-06-21 12:49:24 +08:00
|
|
|
- id: ruff
|
|
|
|
args: [ "--fix", "--show-fixes" ]
|
|
|
|
- id: ruff-format
|
2023-01-20 15:37:58 +08:00
|
|
|
|
|
|
|
- repo: https://github.com/Takishima/cmake-pre-commit-hooks
|
2024-06-04 06:55:02 +08:00
|
|
|
rev: v1.9.6
|
2023-01-20 15:37:58 +08:00
|
|
|
hooks:
|
|
|
|
- id: clang-format
|
|
|
|
args:
|
|
|
|
- '-B_build-pre-commit'
|
|
|
|
- '-DWITH_Fortran=ON'
|
|
|
|
- '-DWITH_TESTS=ON'
|
|
|
|
- '-i'
|
|
|
|
stages: [manual]
|
|
|
|
- id: clang-tidy
|
|
|
|
args:
|
|
|
|
- '-B_build-pre-commit'
|
|
|
|
- '-DWITH_Fortran=ON'
|
|
|
|
- '-DWITH_TESTS=ON'
|
|
|
|
# - '--'
|
|
|
|
# - '-I/Users/togo/.miniforge/envs/dev/include'
|
|
|
|
# - '-I/Users/togo/.miniforge/envs/dev/include/python3.10'
|
|
|
|
# - '-I/Users/togo/.miniforge/envs/dev/lib/python3.10/site-packages/numpy/core/include'
|
|
|
|
stages: [manual]
|
2023-01-22 11:01:04 +08:00
|
|
|
|
|
|
|
- repo: https://github.com/cheshirekow/cmake-format-precommit
|
2023-01-31 13:28:41 +08:00
|
|
|
rev: v0.6.13
|
2023-01-22 11:01:04 +08:00
|
|
|
hooks:
|
|
|
|
- id: cmake-format
|
|
|
|
- id: cmake-lint
|