diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-06-24 12:20:55 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-06-24 15:43:55 -0500 |
commit | e0d363aad8e2204fe8ca4b6937ef2ad74a7b293b (patch) | |
tree | c8300e4864984e9157ba8502ee019c4cd7226128 /.pre-commit-config.yaml | |
parent | c414c2b37d0563456a2fe194b16f8c4aa442e865 (diff) | |
download | redot-cpp-e0d363aad8e2204fe8ca4b6937ef2ad74a7b293b.tar.gz |
Integrate `.pre-commit-config.yaml`
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r-- | .pre-commit-config.yaml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..e63f1d4 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,64 @@ +default_language_version: + python: python3 + +exclude: | + (?x)^( + gdextension/extension_api\.json| + gdextension/gdextension_interface\.h + )$ + +repos: + - repo: https://github.com/pre-commit/mirrors-clang-format + rev: v17.0.6 + hooks: + - id: clang-format + + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.4.4 + hooks: + - id: ruff + args: [--fix] + - id: ruff-format + + - repo: https://github.com/pre-commit/mirrors-mypy + rev: v0.971 + hooks: + - id: mypy + files: \.py$ + types_or: [text] + + - repo: https://github.com/codespell-project/codespell + rev: v2.3.0 + hooks: + - id: codespell + additional_dependencies: [tomli] + + - repo: local + hooks: + - id: copyright-headers + name: copyright-headers + language: python + entry: python misc/scripts/copyright_headers.py + files: \.(c|h)pp$ + exclude: ^test/ + + - id: header-guards + name: header-guards + language: python + entry: python misc/scripts/header_guards.py + files: \.hpp$ + exclude: ^test/ + + - id: file-format + name: file-format + language: python + entry: python misc/scripts/file_format.py + types_or: [text] + + - id: check-get-file-list + name: check-get-file-list + language: python + entry: python misc/scripts/check_get_file_list.py + pass_filenames: false + always_run: true + stages: [manual] |