forked from kubernetes-sigs/kueue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.shellcheckrc
35 lines (32 loc) · 1.47 KB
/
.shellcheckrc
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
32
33
34
35
# shellcheck configuration file
# see: https://github.com/koalaman/shellcheck/wiki
# Allow following sourced files that are not specified in the command,
# we need this because we specify one file at a time in order to trivially
# detect which files are failing
external-sources=true
# Currently disabled these errors will take care of them later
# Not following: (error message here)
# This variable is assigned to itself, so the assignment does nothing.
# https://github.com/koalaman/shellcheck/wiki/SC2269
disable=SC2269
# Reasons include: file not found, no permissions, not included on the command line, not allowing shellcheck to follow files with -x, etc.
# https://github.com/koalaman/shellcheck/wiki/SC1091
disable=SC1091
# Since you double quoted this, it will not word split, and the loop will only run once
# https://github.com/koalaman/shellcheck/wiki/SC2066
disable=SC2066
# Double quote to prevent globbing and word splitting
# https://github.com/koalaman/shellcheck/wiki/SC2086
disable=SC2086
# foo appears unused. Verify it or export it
# https://github.com/koalaman/shellcheck/wiki/SC2034
disable=SC2034
# This {/} is literal. Check if ; is missing or quote the expression.
# https://github.com/koalaman/shellcheck/wiki/SC1083
disable=SC1083
# Declare and assign separately to avoid masking return values
# https://github.com/koalaman/shellcheck/wiki/SC2155
disable=SC2155
# Quote this to prevent word splitting
# https://github.com/koalaman/shellcheck/wiki/SC2046
disable=SC2046