From 680970bfbc90d3635da09e53c2fdfd9e6a49809d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dundar=20G=C3=B6c?= Date: Sun, 27 Mar 2022 18:25:56 +0200 Subject: [PATCH] ci(commitlint): use -u NONE instead of --clean I get a weird error about syntax.vim not being installed when using --clean when running it locally. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 86e723df67..df4f2995d8 100644 --- a/Makefile +++ b/Makefile @@ -166,7 +166,7 @@ _opt_pylint: || echo "SKIP: pylint (flake8 not found)" commitlint: - $(NVIM_PRG) --clean -es +"lua require('scripts.lintcommit').main({trace=false})" + $(NVIM_PRG) -u NONE -es +"lua require('scripts.lintcommit').main({trace=false})" _opt_commitlint: @test -x build/bin/nvim && { $(MAKE) commitlint; exit $$?; } \