File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ anyfailed=0
13
13
14
14
while IFS= read -r -d $' ' file; do
15
15
if is_bash " $file " ; then
16
- if ! shellcheck -x -W0 -s bash " $file " ; then
16
+ if ! shellcheck " $file " ; then
17
17
anyfailed=1
18
18
fi
19
19
fi
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ yaml-toml-shell-test:
65
65
changes : &toml_lint_files
66
66
- .gitlab-ci/test/gitlab-ci.yml
67
67
- .gitlab-ci/**/*.sh
68
+ - .shellcheckrc
68
69
- bin/toml_lint.py
69
70
- src/**/ci/*.toml
70
71
when : on_success
Original file line number Diff line number Diff line change
1
+ # Allow using `source` to execute the contents of other files than the one
2
+ # being checked.
3
+ external-sources =true
4
+
5
+ # Do not print links to wiki pages explaining why this is an issue.
6
+ wiki-link-count =0
7
+
8
+ # All shell scripts are being run using bash, even if they are lacking
9
+ # a shebang.
10
+ shell =bash
You can’t perform that action at this time.
0 commit comments