continuity/.pre-commit-config.yaml

25 lines
679 B
YAML
Raw Normal View History

2023-11-16 13:26:55 +00:00
repos:
- repo: local
hooks:
2023-10-12 06:56:54 +00:00
#Use dotnet format already installed on your machine
2023-11-16 13:26:55 +00:00
- id: dotnet-format
name: dotnet-format
language: system
entry: dotnet format --include
types_or: [c#, vb]
- repo: https://github.com/Mateusz-Grzelinski/actionlint-py
rev: v1.6.26.11
hooks:
- id: actionlint
additional_dependencies: [pyflakes>=3.0.1, shellcheck-py>=0.9.0.5]
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.11.0
hooks:
- id: pretty-format-yaml
args: [--autofix, --indent, '2']
2023-11-16 13:38:38 +00:00
- repo: https://github.com/hadolint/hadolint
rev: v2.12.0
hooks:
- id: hadolint-docker
2023-11-16 17:48:29 +00:00
args: [--ignore, SC2086]