mirror of
https://github.com/natelandau/shell-scripting-templates.git
synced 2025-11-08 05:03:46 -05:00
11 lines
363 B
Plaintext
11 lines
363 B
Plaintext
# Allow opening any 'source'd file, even if not specified as input
|
|
external-sources=true
|
|
|
|
# Specify the shell to use
|
|
shell=bash
|
|
|
|
disable=SC2236 # Allow [ ! -z foo ] instead of suggesting -n
|
|
disable=SC2001 # Allow string="string" ; echo "$string" | sed -e "s/ir/ri/"
|
|
disable=SC2317 # Allow Command appears to be unreachable
|
|
disable=SC2034 # Allow unused variables
|