-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
83 lines (83 loc) · 2.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
# s6-overlay's scripts shouldn't be executable
exclude: |
(?x)(
rootfs/etc/(
cont-init\.d|
services\.d|
s6-overlay/s6-rc\.d
)
)
- id: check-symlinks
- id: destroyed-symlinks
- id: detect-private-key
- id: end-of-file-fixer
exclude: (\.nnb|^\.HA_VERSION)$
- id: forbid-submodules
- id: mixed-line-ending
args: [--fix=no]
- id: trailing-whitespace
- repo: local
hooks:
- id: prettier
name: Prettier
entry: npx --yes prettier --check --ignore-unknown
language: system
types: [text]
- id: markdownlint
name: markdownlint
entry: npx --yes markdownlint-cli
language: system
types: [file]
files: (?i)(\.md|(^|/)(TODO|NOTES))$
# Home Assistant YAML-files (using ".yamllint.yaml")
- id: yamllint
name: yamllint (Home Assistant)
entry: yamllint -s
language: system
types: [yaml]
# Other YAML-files (hardcoded "default"-configuration)
- id: yamllint-other
name: yamllint (other)
# prettier-ignore
entry:
"yamllint -s -d \"{extends: default, \
rules: {\
document-start: disable,\
quoted-strings: {\
required: only-when-needed\
}\
}\
}\""
language: system
types: [yaml]
# Matches "dotfiles" and "dotfolders" (ie, generic configuration files)
files: (?i)^\..*ya?ml$
- id: shellcheck
name: ShellCheck
entry: shellcheck --wiki-link-count=0
language: system
types: [shell]
- id: shfmt
name: shfmt
entry: shfmt -l -d
language: system
types: [shell]
- id: hadolint
name: hadolint
entry: hadolint
language: system
types: [dockerfile]
- id: notebook-cells
name: check notebooks for cell-data
entry: .github/scripts/check-notebook-cells.sh
language: script
types: [file]
files: (?i)\.(ipynb|nnb)$