feat: KIAUH v4.0.0 #191

Merged
dw-0 merged 453 commits from v4-rc into master 2022-05-29 20:11:16 +02:00
2 changed files with 14 additions and 2 deletions
Showing only changes of commit d000ba1373 - Show all commits

2
.gitignore vendored
View File

@@ -1,3 +1 @@
.idea
.shellcheckrc
klipper_repos.txt

14
.shellcheckrc Normal file
View File

@@ -0,0 +1,14 @@
source=scripts
enable=avoid-nullary-conditions
enable=deprecate-which
enable=quote-safe-variables
enable=require-variable-braces
# SC2162: `read` without `-r` will mangle backslashes.
# https://github.com/koalaman/shellcheck/wiki/SC2162
disable=SC2162
# SC2164: Use `cd ... || exit` in case `cd` fails
# https://github.com/koalaman/shellcheck/wiki/SC2164
disable=SC2164