Mercurial > hgrepos > FreeBSD > ports > sysutils > local-bsdtools
view .shellcheckrc @ 806:b59054f11029
fports: Implement "fports detail -b" to print details about all packages that are not installed from the blessed FreeBSD repo.
While there change option handling to allow a combination of selection flags:
merge all selected packages and sort if needed.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Tue, 05 Nov 2024 10:57:06 +0100 |
| parents | e18cc5fe828c |
| children |
line wrap: on
line source
# # See: shellcheck(1) # # To see a list of # See: https://www.shellcheck.net/wiki/ # # This is a customization for FreeBSD: # in FreeBSD there is $'...', local; and tests with logical operators work # as expected. # source-path=SCRIPTDIR/../share/local-bsdtools source-path=SCRIPTDIR source-path=/etc source-path=/usr/local/etc/local-bsdtools external-sources=true # $/${} is unnecessary on arithmetic variables disable=SC2004 # Prefer [ p ] && [ q ] as [ p -a q ] is not well-defined disable=SC2166 # In POSIX sh, $'..' is undefined disable=SC3003 # In POSIX sh, lexicographical \< is undefined. disable=SC3012 # In POSIX sh, local is undefined disable=SC3043 # ;& is non-standard disable=SC2127 # This case is not specified by getopts (we have long options also) disable=SC2214 enable=avoid-nullary-conditions
