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.
This commit is contained in:
Dundar Göc 2022-03-27 18:25:56 +02:00
parent 05edab85d7
commit 680970bfbc

View File

@ -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 $$?; } \