build: use pre-commit and commitizen

This commit is contained in:
Nathaniel Landau
2023-08-29 10:14:58 -04:00
parent ad9ce1dc10
commit 1370c531d2
5 changed files with 719 additions and 0 deletions

10
.shellcheckrc Normal file
View File

@@ -0,0 +1,10 @@
# Allow opening any 'source'd file, even if not specified as input
external-sources=true
# Specify the shell to use
shell=bash
disable=SC2236 # Allow [ ! -z foo ] instead of suggesting -n
disable=SC2001 # Allow string="stirng" ; echo "$string" | sed -e "s/ir/ri/"
disable=SC2317 # Allow Command appears to be unreachable
disable=SC2034 # Allow unused variables