-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.shellcheckrc
More file actions
31 lines (25 loc) · 1 KB
/
Copy path.shellcheckrc
File metadata and controls
31 lines (25 loc) · 1 KB
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
27
28
29
30
31
# .shellcheckrc - proxmox-gpu-passthrough
# ShellCheck 0.9.0+ configuration
#
# References:
# - https://www.shellcheck.net/wiki/Directive
# - https://www.shellcheck.net/wiki/Optional
# ============================================================================
# DISABLED CHECKS
# ============================================================================
# SC1090: Can't follow non-constant source
# SC1091: Not following sourced file
# Rationale: scripts may source files via dynamic paths
# (e.g. "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")/…").
# shellcheck cannot resolve these at static analysis time.
disable=SC1090,SC1091
# ============================================================================
# CONFIGURATION
# ============================================================================
# Shell dialect
shell=bash
# Allow following source statements where the path is resolvable
source-path=SCRIPTDIR
external-sources=true
# Minimum severity threshold
severity=warning