Disable rpmlint by default (#492)

* Disable rpmlint by default as it is not safe.
This commit is contained in:
Jason Tibbitts
2017-04-20 10:55:20 -05:00
committed by w0rp
parent 925f24707f
commit c1a2d26711
3 changed files with 18 additions and 3 deletions

View File

@@ -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'],
\}