2020-05-30 05:44:57 -04:00
|
|
|
# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Unlicense
|
|
|
|
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2021-12-10 20:08:47 -05:00
|
|
|
rev: v4.0.1
|
2020-05-30 05:44:57 -04:00
|
|
|
hooks:
|
|
|
|
- id: check-yaml
|
|
|
|
- id: end-of-file-fixer
|
2023-03-25 03:39:35 -04:00
|
|
|
exclude: '^(tests/.*\.exp|tests/cmdline/.*|tests/.*/data/.*)'
|
2020-05-30 05:44:57 -04:00
|
|
|
- id: trailing-whitespace
|
2023-03-25 03:39:35 -04:00
|
|
|
exclude: '^(tests/.*\.exp|tests/cmdline/.*|tests/.*/data/.*|lib/mbedtls_errors/generate_errors.diff)'
|
2023-03-18 10:28:45 -04:00
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
|
|
rev: v2.2.4
|
|
|
|
hooks:
|
|
|
|
- id: codespell
|
2023-03-23 03:09:57 -04:00
|
|
|
args: [-w]
|
2023-03-20 02:36:08 -04:00
|
|
|
exclude: |
|
|
|
|
(?x)^(
|
|
|
|
locale/|
|
2023-09-20 12:15:13 -04:00
|
|
|
lib/|
|
|
|
|
tests/unicode/data/utf-8_invalid.txt|
|
|
|
|
tests/extmod/data/qr.pgm|
|
|
|
|
tests/basics/bytearray_byte_operations.py
|
2023-03-20 02:36:08 -04:00
|
|
|
)
|
2021-03-15 09:56:29 -04:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: translations
|
|
|
|
name: Translations
|
|
|
|
entry: sh -c "if ! make check-translate; then make translate; fi"
|
|
|
|
types: [c]
|
|
|
|
pass_filenames: false
|
|
|
|
language: system
|
|
|
|
- id: formatting
|
|
|
|
name: Formatting
|
2021-03-15 16:32:26 -04:00
|
|
|
entry: python3 tools/codeformat.py
|
2021-03-15 09:56:29 -04:00
|
|
|
types_or: [c, python]
|
|
|
|
language: system
|