-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
43 lines (40 loc) · 1.08 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
repos:
# general stuff
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
# Git style
- id: check-added-large-files
- id: check-merge-conflict
- id: check-vcs-permalinks
- id: forbid-new-submodules
- id: no-commit-to-branch
# Common errors
- id: end-of-file-fixer
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: check-yaml
- id: check-merge-conflict
- id: check-executables-have-shebangs
# markdown
- repo: https://github.com/markdownlint/markdownlint.git
rev: 0b006db2722db937dfdf1d842c1b410b69d3e41f
hooks:
- id: markdownlint_docker
# OpenEmbedded Styleguide
- repo: https://github.com/priv-kweihmann/oelint-adv.git
rev: 3.7.1
hooks:
- id: oelint-adv
args:
[
--nowarn,
--noinfo,
--quiet,
--relpaths,
--suppress=oelint.task.nocopy,
--suppress=oelint.vars.insaneskip,
--fix,
--nobackup,
--color,
]