summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorGötz Christ <goetzchrist@pm.me>2021-09-17 03:55:28 -0500
committerGitHub <noreply@github.com>2021-09-17 17:55:28 +0900
commit2f72a3ed1972d23a5ef50c78715ec68f090932e8 (patch)
tree37e33f7f23ca8a025ce5c6e0597278ca253f6411 /ale_linters
parentdca56dd77267d6cedc3785f1359dd96d1f4b3fa9 (diff)
downloadale-2f72a3ed1972d23a5ef50c78715ec68f090932e8.zip
[YAML] CircleCI: skip checking for new tool version (#3902)
This way the tool runs a bit faster and we don't create unneeded network requests. Don't know if there are other network requests still occurring.
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/yaml/circleci.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/yaml/circleci.vim b/ale_linters/yaml/circleci.vim
index 3df61459..20835454 100644
--- a/ale_linters/yaml/circleci.vim
+++ b/ale_linters/yaml/circleci.vim
@@ -28,7 +28,7 @@ endfunction
call ale#linter#Define('yaml', {
\ 'name': 'circleci',
\ 'executable': {b -> expand('#' . b . ':p') =~? '\.circleci' ? 'circleci' : ''},
-\ 'command': 'circleci config validate - < %s',
+\ 'command': 'circleci --skip-update-check config validate - < %s',
\ 'callback': 'ale_linters#yaml#circleci#Handle',
\ 'output_stream': 'stderr',
\ 'lint_file': 1,