1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2026-05-22 08:55:42 +02:00
Files
woodpecker/.pre-commit-config.yaml
T

60 lines
1.8 KiB
YAML
Raw Normal View History

2024-01-27 21:15:10 +01:00
# cSpell:ignore checkmake hadolint autofix autoupdate
2023-10-28 21:58:59 +02:00
repos:
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
2023-10-28 21:58:59 +02:00
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/golangci/golangci-lint
rev: v1.62.2
2023-10-28 21:58:59 +02:00
hooks:
- id: golangci-lint
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.43.0
2023-10-28 21:58:59 +02:00
hooks:
- id: markdownlint
exclude: '^(docs/versioned_docs/.*|CHANGELOG.md)$'
2023-10-28 21:58:59 +02:00
- repo: https://github.com/mrtazz/checkmake
rev: 0.2.2
hooks:
- id: checkmake
2023-10-31 09:14:09 +01:00
exclude: '^docker/Dockerfile.make$' # actually a Dockerfile and not a makefile
2023-10-28 21:58:59 +02:00
- repo: https://github.com/hadolint/hadolint
rev: v2.13.1-beta
2023-10-28 21:58:59 +02:00
hooks:
- id: hadolint
2023-11-19 22:47:14 +01:00
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
2023-11-19 22:47:14 +01:00
hooks:
- id: prettier
2023-12-29 12:51:02 +01:00
- repo: https://github.com/adrienverge/yamllint.git
2024-03-26 08:03:53 +01:00
rev: v1.35.1
2023-12-29 12:51:02 +01:00
hooks:
- id: yamllint
args: [--strict, -c=.yamllint.yaml]
2024-01-11 18:43:54 +01:00
- repo: local
hooks:
- id: yaml-file-extension
name: Check if YAML files has *.yaml extension.
entry: YAML filenames must have .yaml extension.
language: fail
files: .yml$
2024-01-20 18:29:19 +01:00
exclude: '^(.gitpod.yml|.github/ISSUE_TEMPLATE/config.yml)$'
2023-10-28 21:58:59 +02:00
ci:
autofix_commit_msg: |
[pre-commit.ci] auto fixes from pre-commit.com hooks [CI SKIP]
for more information, see https://pre-commit.ci
autofix_prs: true
autoupdate_branch: ''
autoupdate_commit_msg: '[pre-commit.ci] pre-commit autoupdate'
autoupdate_schedule: quarterly
2023-10-31 09:14:09 +01:00
# NB: hadolint not included in pre-commit.ci
2024-05-12 12:14:06 +02:00
skip: [check-hooks-apply, check-useless-excludes, hadolint, prettier, golangci-lint]
2023-10-28 21:58:59 +02:00
submodules: false