gitignore: unignore .shellcheckrc

* also unignore IDE specific directories, those should be ignored globally by the developer anyways

Signed-off-by: Dominik Willner th33xitus@gmail.com
This commit is contained in:
th33xitus
2022-04-26 20:24:53 +02:00
parent ccc831fee4
commit 972e588894
2 changed files with 14 additions and 2 deletions

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