changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / .shellcheckrc

changeset 371: 7dcabf3e0edc
parent: 0a88cdd4bbd5
author: Richard Westhaver <ellis@rwest.io>
date: Tue, 24 Sep 2024 15:53:24 -0400
permissions: -rw-r--r--
description: no link in bootstrap.sh
1 # Suggest explicitly using -n in `[ $var ]`
2 enable=avoid-nullary-conditions
3 
4 # Suggest 'command -v' instead of 'which'
5 enable=deprecate-which
6 
7 # Suggest quoting variables without metacharacters
8 enable=quote-safe-variables
9 
10 # Require [[ and warn about [ in Bash/Ksh
11 enable=require-double-brackets