forked from 3mdeb/fwupd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
41 lines (41 loc) · 1.23 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
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/ambv/black
rev: 20.8b1
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: shellcheck
name: check shellscript style
language: system
entry: shellcheck --severity=error -e SC2068
types: [shell]