From bfb7b97f10a50bab418c4282ec5bd63aec17d32e Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sun, 5 Dec 2021 01:06:18 +0000 Subject: [PATCH] docs(vim-ale): suggest linter plugins to install --- vim-ale/install.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/vim-ale/install.sh b/vim-ale/install.sh index caf161a..5181c6b 100644 --- a/vim-ale/install.sh +++ b/vim-ale/install.sh @@ -1,5 +1,7 @@ #!/bin/bash +#shellcheck disable=SC1003 + function __init_vim_ale() { set -e set -u @@ -31,6 +33,15 @@ function __init_vim_ale() { echo "" echo "vim-ale enabled with reasonable defaults" + echo "" + echo "note: don't forget to install the relevant linters and formatters, such as:" + echo '' + echo ' webi \' + echo ' jshint \' + echo ' prettier \' + echo ' shellcheck \' + echo ' shfmt \' + echo '' }