diff options
author | James McCoy <jamessan@jamessan.com> | 2022-03-27 17:11:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-27 17:11:11 -0400 |
commit | a201dd265f3f20be954d8b7ee7f65d3eb6f920f6 (patch) | |
tree | a6bc67368f13ccc024e39e0988af6c9597e65608 | |
parent | b66cc0f5697dfa2031be16f823211680c9c373d1 (diff) | |
parent | 680970bfbc90d3635da09e53c2fdfd9e6a49809d (diff) | |
download | rneovim-a201dd265f3f20be954d8b7ee7f65d3eb6f920f6.tar.gz rneovim-a201dd265f3f20be954d8b7ee7f65d3eb6f920f6.tar.bz2 rneovim-a201dd265f3f20be954d8b7ee7f65d3eb6f920f6.zip |
Merge pull request #17887 from dundargoc/ci/commitlint
ci(commitlint): use -u NONE instead of --clean
-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 $$?; } \ |