diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-27 18:25:56 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-27 18:28:11 +0200 |
commit | 680970bfbc90d3635da09e53c2fdfd9e6a49809d (patch) | |
tree | 4b87b8b20bba7ef87e033f0bec557a9cfc2d0a30 | |
parent | 05edab85d7edad63c3b449689b57f9f658782c11 (diff) | |
download | rneovim-680970bfbc90d3635da09e53c2fdfd9e6a49809d.tar.gz rneovim-680970bfbc90d3635da09e53c2fdfd9e6a49809d.tar.bz2 rneovim-680970bfbc90d3635da09e53c2fdfd9e6a49809d.zip |
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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $$?; } \ |