pcmt/.pre-commit-config.yaml
2023-08-19 04:36:24 +02:00

36 lines
977 B
YAML

# Copyright 2023 wanderer <a_mirre at utb dot cz>
# SPDX-License-Identifier: GPL-3.0-or-later
---
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: check-added-large-files
- repo: meta
hooks:
- id: check-hooks-apply
- repo: https://github.com/TekWizely/pre-commit-golang
rev: v1.0.0-rc.1
hooks:
- id: go-mod-tidy
- id: go-test-mod
- id: go-build-mod
- id: golangci-lint-mod
- repo: https://git.dotya.ml/wanderer/hadolint-pre-commit
rev: v0.0.1
hooks:
- id: hadolint-container
- repo: local
hooks:
- id: addlicense
name: addlicense -check
entry: >
go run github.com/google/addlicense@v1.1.1 -check -v
pass_filenames: true
types_or: ["go", "yaml", "javascript", "dockerfile"]
exclude: "^(devenv.yaml|assets/.*|templates/.*)$"
language: system