diff options
author | dundargoc <gocdundar@gmail.com> | 2023-12-18 10:55:23 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-21 17:38:42 +0100 |
commit | af93a74a0f4afa9a3a4f55ffdf28141eaf776d22 (patch) | |
tree | 76068552bf3a74b4170ecd7b087905c96ddd6f8f /src/clint.py | |
parent | ade42d531bcc9ca61facfb0524128a8a9f9b2444 (diff) | |
download | rneovim-af93a74a0f4afa9a3a4f55ffdf28141eaf776d22.tar.gz rneovim-af93a74a0f4afa9a3a4f55ffdf28141eaf776d22.tar.bz2 rneovim-af93a74a0f4afa9a3a4f55ffdf28141eaf776d22.zip |
refactor: run IWYU on entire repo
Reference: https://github.com/neovim/neovim/issues/6371.
Diffstat (limited to 'src/clint.py')
-rwxr-xr-x | src/clint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clint.py b/src/clint.py index 80ebf565a1..303c3df25d 100755 --- a/src/clint.py +++ b/src/clint.py @@ -897,8 +897,6 @@ def CheckIncludes(filename, lines, error): }): return - # These should be synced with the ignored headers in the `iwyu` target in - # the Makefile. check_includes_ignore = [ "src/nvim/api/private/validate.h", "src/nvim/assert_defs.h", @@ -913,6 +911,7 @@ def CheckIncludes(filename, lines, error): "src/nvim/eval/userfunc.h", "src/nvim/event/libuv_process.h", "src/nvim/event/loop.h", + "src/nvim/event/multiqueue.h", "src/nvim/event/process.h", "src/nvim/event/rstream.h", "src/nvim/event/signal.h", @@ -928,6 +927,7 @@ def CheckIncludes(filename, lines, error): "src/nvim/keycodes.h", "src/nvim/lua/executor.h", "src/nvim/main.h", + "src/nvim/mark.h", "src/nvim/msgpack_rpc/channel_defs.h", "src/nvim/msgpack_rpc/helpers.h", "src/nvim/msgpack_rpc/unpacker.h", |