-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.shellcheckrc
More file actions
26 lines (19 loc) · 743 Bytes
/
Copy path.shellcheckrc
File metadata and controls
26 lines (19 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Author: Simon Brandt
# E-Mail: simon.brandt@uni-greifswald.de
# Last Modification: 2025-07-29
# License: Public Domain
# Look for sourced files relative to the checked script.
source-path=SCRIPTDIR
source-path=SCRIPTDIR/../ShellArgparser
# Allow opening any sourced file, even if not specified as input.
external-sources=true
# Turn on warnings for nullary conditions.
enable=avoid-nullary-conditions
# Turn on warnings for unassigned uppercase variables.
enable=check-unassigned-uppercase
# Turn on warnings for unquoted variables with safe values.
enable=quote-safe-variables
# Turn on warnings for single bracket-tests.
enable=require-double-brackets
# Turn on warnings for variables without braces.
enable=require-variable-braces