diff options
author | dundargoc <gocdundar@gmail.com> | 2024-05-03 13:32:43 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-05-03 15:18:09 +0200 |
commit | ca243f06dd055adff3749a89fce489524eb59ab8 (patch) | |
tree | 58b055838d09c84385a15f22139823622310d0e4 /CMakeLists.txt | |
parent | e15991c8116cc7fa1c0ccf65b544199ec6ffa7e8 (diff) | |
download | rneovim-ca243f06dd055adff3749a89fce489524eb59ab8.tar.gz rneovim-ca243f06dd055adff3749a89fce489524eb59ab8.tar.bz2 rneovim-ca243f06dd055adff3749a89fce489524eb59ab8.zip |
build: remove `lintdoc` from `lint` target
`lintdoc` takes too long to be part of `lint`. It may be reintroduced
once it's possible to only run lintdoc on files that have been changed.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 797bbe7422..cdc834d0fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -272,7 +272,7 @@ add_custom_target(lintcommit add_dependencies(lintcommit nvim_bin) add_custom_target(lint) -add_dependencies(lint lintc lintlua lintsh lintcommit lintdoc) +add_dependencies(lint lintc lintlua lintsh lintcommit) # Format add_glob_target( |