/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.12.0
.shellcheckrc
14 строк
540 B
Koichi Murase
fix: switch from `if $var` to `if [[ $var ]]` for custom IFS
23 апр 2023, 09:14
23 апр 2023, 09:14
78e4e4a
Код
Авторство
О чём код?
shell=bash enable=deprecate-which enable=require-double-brackets disable=SC1090 # not really fixable usually (ever?) disable=SC2034 # for localizing variables set in called functions disable=SC2128 # intentional style choice disable=SC2206 # suggested alternatives fail in posix mode or use temp files disable=SC2209 # interferes with our `set` (literal) vs empty booleans disable=SC2207 # suggested alternatives fail in posix mode or use temp files # These disables are to be investigated and decided disable=SC2016 disable=SC2155