-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.shellcheckrc
More file actions
24 lines (19 loc) · 709 Bytes
/
.shellcheckrc
File metadata and controls
24 lines (19 loc) · 709 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
# =============================================================================
#
# Documentation: https://www.shellcheck.net/wiki/
#
# =============================================================================
# Use bash as default shell
shell=bash
# Enable all optional checks
enable=all
# Severity threshold (error, warning, info, style)
severity=warning
# Exclude specific rules
# SC1091: Not following sourced files (can't always resolve paths)
# SC2034: Unused variables (sometimes set for external use)
disable=SC1091,SC2034
# Follow external sources when possible
external-sources=true