1
0
mirror of https://github.com/deajan/obackup.git synced 2024-11-14 19:53:42 +01:00
obackup/dev/shellcheck.sh

11 lines
373 B
Bash
Raw Normal View History

2016-08-08 18:55:22 +02:00
#!/usr/bin/env bash
2016-12-23 17:52:24 +01:00
#SC1090 = not following non constants source
#SC1091 = not following source
#SC2086 = quoting errors (shellcheck is way too picky about quoting)
2016-08-08 18:55:22 +02:00
#SC2120 = only for debug version
2018-10-02 21:22:11 +02:00
#SC2034 = unused variabled (can be ignored in ofunctions.sh)
#SC2068 = bad array usage (can be ignored in ofunctions.sh)
2016-08-08 18:55:22 +02:00
2018-10-02 21:22:11 +02:00
shellcheck -e SC1090,SC1091,SC2086,SC2119,SC2120 $@