chore: Added pre-commit hooks

This commit is contained in:
2025-12-02 04:58:46 +01:00
parent 9353408ed6
commit 1085275c76
4 changed files with 38 additions and 0 deletions

28
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,28 @@
default_install_hook_types: [pre-commit, commit-msg]
exclude: gotk-.*.yaml
repos:
- repo: builtin
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
args:
- --allow-multiple-documents
- id: check-added-large-files
- id: check-merge-conflict
- id: check-executables-have-shebangs
- repo: https://github.com/crate-ci/typos
rev: v1.40.0
hooks:
- id: typos
- repo: https://github.com/sirwart/ripsecrets
rev: v0.1.11
hooks:
- id: ripsecrets-system
- repo: https://github.com/crate-ci/committed
rev: v1.1.8
hooks:
- id: committed

6
.typos.toml Normal file
View File

@@ -0,0 +1,6 @@
[default]
extend-ignore-re = [
"(?Rm)^.*(#|//)\\s*spellchecker:disable-line$",
"(?s)(#|//)\\s*spellchecker:off.*?\\n\\s*(#|//)\\s*spellchecker:on",
"(#|//)\\s*spellchecker:ignore-next-line\\n.*",
]

View File

@@ -58,6 +58,7 @@ if [ "${vip}" = "null" ]; then
fi fi
echo -n "Checking connection to ${bootstrap_ip}... " echo -n "Checking connection to ${bootstrap_ip}... "
# spellchecker:ignore-next-line
if nmap -Pn ${bootstrap_ip} -p 50000 | grep -q 'open'; then if nmap -Pn ${bootstrap_ip} -p 50000 | grep -q 'open'; then
echo "[Success]" echo "[Success]"
else else
@@ -67,6 +68,7 @@ fi
count=0 count=0
max_retries=20 max_retries=20
# spellchecker:ignore-next-line
while ! nmap -Pn ${vip} -p 50000 | grep -q 'open' && [ ${count} -lt ${max_retries} ]; do while ! nmap -Pn ${vip} -p 50000 | grep -q 'open' && [ ${count} -lt ${max_retries} ]; do
if [ $count -eq 0 ]; then if [ $count -eq 0 ]; then
echo -n "Bootstrapping Kubernetes" echo -n "Bootstrapping Kubernetes"

2
committed.toml Normal file
View File

@@ -0,0 +1,2 @@
style = "conventional"
ignore_author_re = "Flux"