chore: import notes from an old repository

This commit is contained in:
Michele Cereda
2024-06-15 18:48:34 +02:00
parent a65ba478ba
commit ecde1dee42
22 changed files with 274 additions and 13 deletions

17
snippets/pre-commit.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env sh
cat > .pre-commit-config.yaml <<-EOF
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- repo: https://github.com/ansible-community/ansible-lint
rev: v5.2.1
hooks:
- id: ansible-lint
EOF
pre-commit install