summarylogtreecommitdiffstats
path: root/.shellcheckrc
blob: 5595c1fc0abda209d2d05d9e06de9de81d6d1695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# See https://wiki.archlinux.org/title/PKGBUILD
shell=bash

# Enable all additional checks.
enable=all

# Some PKGBUILD variables will only be used by makepkg.
# See https://www.shellcheck.net/wiki/SC2034
disable=SC2034

# Some variables are exported from makepkg, and should be present in the PKGBUILD.
# See https://www.shellcheck.net/wiki/SC2154
disable=SC2154

# makepkg already runs each PKGBUILD function with 'set -e'.
# See https://www.shellcheck.net/wiki/SC2164
disable=SC2164