summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorJason Tibbitts <tibbs@math.uh.edu>2017-04-20 10:55:20 -0500
committerw0rp <w0rp@users.noreply.github.com>2017-04-20 16:55:20 +0100
commitc1a2d267117ee7cde612e3d66bf039458fc41ce4 (patch)
tree4f9599eaa3effa715cc64a1f7fb5d14d0231c29d /autoload
parent925f24707f9a3a967e46d631cb6cdb9c44f37dc5 (diff)
downloadale-c1a2d267117ee7cde612e3d66bf039458fc41ce4.zip
Disable rpmlint by default (#492)
* Disable rpmlint by default as it is not safe.
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/linter.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim
index dc42c52a..8a332491 100644
--- a/autoload/ale/linter.vim
+++ b/autoload/ale/linter.vim
@@ -20,11 +20,13 @@ let s:default_ale_linter_aliases = {
" No linters are used for plaintext files by default.
"
" Only cargo is enabled for Rust by default.
+" rpmlint is disabled by default because it can result in code execution.
let s:default_ale_linters = {
\ 'csh': ['shell'],
\ 'go': ['go build', 'gofmt', 'golint', 'gosimple', 'go vet', 'staticcheck'],
\ 'help': [],
\ 'rust': ['cargo'],
+\ 'spec': [],
\ 'text': [],
\ 'zsh': ['shell'],
\}