fwupd/.pre-commit-config.yaml
2021-06-16 06:41:46 -05:00

51 lines
1.5 KiB
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: no-commit-to-branch
args: [--branch, master, --pattern, 1_.*_X]
- id: check-added-large-files
- id: check-byte-order-marker
- id: check-executables-have-shebangs
- id: forbid-new-submodules
- id: check-yaml
- id: check-json
- id: check-symlinks
- id: check-xml
- id: end-of-file-fixer
types_or: [c, shell, python]
- id: trailing-whitespace
types_or: [c, shell, python, xml]
- id: check-docstring-first
- id: check-merge-conflict
- id: mixed-line-ending
args: [--fix=lf]
- repo: https://github.com/codespell-project/codespell
rev: v2.1.0
hooks:
- id: codespell
args: ['--config', './contrib/codespell.cfg', --write-changes]
- repo: https://github.com/ambv/black
rev: 21.6b0
hooks:
- id: black
- repo: local
hooks:
- id: check-deprecated
name: check for use of any deprecated items
language: script
entry: ./contrib/ci/check-deprecated.sh
- id: check-null-false-returns
name: check for null / false return mistmatch
language: script
entry: ./contrib/ci/check-null-false-returns.py
- id: check-headers
name: check for superfluous includes
language: script
entry: ./contrib/ci/check-headers.py
- id: shellcheck
name: check shellscript style
language: system
entry: shellcheck --severity=error -e SC2068
types: [shell]