forked from ralish/bash-script-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pedantic updates to ShellCheck config
- Loading branch information
Showing
1 changed file
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
# Add the script directory to the search path for source statements | ||
source-path=SCRIPTDIR | ||
# ShellCheck settings | ||
# | ||
# Last reviewed release: v0.10.0 | ||
|
||
# Enable all checks (inc. optional) | ||
# List of optional checks to enable | ||
enable=all | ||
|
||
# Disable some checks | ||
# List of checks to disable | ||
# | ||
# SC2250 require-variable-braces optional | ||
# Check ID Symbolic name Type | ||
# SC2250 require-variable-braces optional | ||
disable=SC2250 | ||
|
||
# Add the script directory to the search path for source statements | ||
source-path=SCRIPTDIR | ||
|
||
# vim: syntax=conf cc=80 tw=79 ts=4 sw=4 sts=4 et sr |