blob: 85e58c83d67c6d906ba19c17c0d05749729ba034 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# See https://wiki.archlinux.org/title/PKGBUILD
shell=bash
# Enable all additional checks.
enable=all
enable=!check-extra-masked-returns
# 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
#
# See https://www.shellcheck.net/wiki/SC2312
# disable=check-extra-masked-returns
|