From 71ddd95a2577f7d9c1ebd658eb1685808d9b9fb5 Mon Sep 17 00:00:00 2001 From: bretello Date: Sun, 6 Dec 2020 01:58:46 +0100 Subject: [PATCH] vim: add hadolint for Dockerfiles --- vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vimrc b/vimrc index 1ad35e4..bbb5909 100644 --- a/vimrc +++ b/vimrc @@ -150,6 +150,7 @@ let g:ale_cpp_gcc_options = '-std=c++17 -Wall -Wpedantic' let g:ale_linters = { \ 'bash': ['bashlint', "shellcheck"], + \ 'dockerfile': ["hadolint"], \ 'zsh': ['bashlint', "shellcheck"], \ 'python': ['pyls', 'pylint', 'bandit'], \ 'go': ['gopls', 'gobuild'],