-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.shellcheckrc
More file actions
24 lines (19 loc) · 947 Bytes
/
Copy path.shellcheckrc
File metadata and controls
24 lines (19 loc) · 947 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
# ShellCheck configuration
# https://www.shellcheck.net/wiki/Directive
#
# Note: Only these directives are supported in .shellcheckrc:
# disable, enable, external-sources, source-path, source, shell
# Severity must be set via SHELLCHECK_OPTS env var or command line (--severity=warning)
# Shell dialect (default: auto-detect from shebang)
# shell=bash
# Enable optional checks
enable=all
# Allow following sourced files from external paths
external-sources=true
# Help shellcheck find sourced files relative to the script's directory
source-path=SCRIPTDIR
# Disable specific checks
# SC1091: Not following sourced file (handled by external-sources + source-path, but some dynamic paths can't be resolved)
# SC2154: Variables sourced from common.sh (DOCKER_LIB, EXTENSIONS_DIR, SCHEMAS_DIR, GREEN, NC, etc.)
# SC2250: Prefer braces around variable references (style preference - codebase uses $VAR consistently)
disable=SC1091,SC2154,SC2250