mirror of
https://github.com/Architeuthis-Flux/Jumperless.git
synced 2024-11-27 17:00:55 +01:00
30 lines
583 B
YAML
30 lines
583 B
YAML
# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
|
|
#
|
|
# SPDX-License-Identifier: Unlicense
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
rev: v15.0.7
|
|
hooks:
|
|
- id: clang-format
|
|
exclude: |
|
|
(?x)^(
|
|
examples/|
|
|
src/class|
|
|
src/common|
|
|
src/device|
|
|
src/host|
|
|
src/osal|
|
|
src/portable|
|
|
src/tusb_option.h|
|
|
src/tusb.c|
|
|
src/tusb.h
|
|
)
|
|
types_or: [c++, c, header]
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.2.4
|
|
hooks:
|
|
- id: codespell
|
|
args: [-w]
|