diff options
| author | Daniel Hahler <git@thequod.de> | 2019-07-04 05:30:16 +0200 |
|---|---|---|
| committer | Daniel Hahler <git@thequod.de> | 2019-07-04 12:29:54 +0200 |
| commit | 32361a1245d1584ae074702aa645bc20e353f787 (patch) | |
| tree | 66043fdb5d8e280f85de2552bbb72cc700e612f0 /Makefile | |
| parent | 571b2c5e7be105d23ada987a7c7080f8631bfd15 (diff) | |
| download | rneovim-32361a1245d1584ae074702aa645bc20e353f787.tar.gz rneovim-32361a1245d1584ae074702aa645bc20e353f787.tar.bz2 rneovim-32361a1245d1584ae074702aa645bc20e353f787.zip | |
Improve luacheck setup [skip appveyor]
- Move .luacheckrc to root, add read_globals=vim
- Simplify lualint target, run it on all lua files
- Lint preload.lua, but ignore W211
- Remove testlint target, included in lualint (and lint)
- Clean up .luacheckrc
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -135,9 +135,6 @@ functionaltest: | nvim functionaltest-lua: | nvim +$(BUILD_CMD) -C build functionaltest-lua -testlint: | build/.ran-cmake deps - $(BUILD_CMD) -C build testlint - lualint: | build/.ran-cmake deps $(BUILD_CMD) -C build lualint @@ -182,6 +179,6 @@ appimage: appimage-%: bash scripts/genappimage.sh $* -lint: check-single-includes clint testlint lualint +lint: check-single-includes clint lualint -.PHONY: test testlint lualint functionaltest unittest lint clint clean distclean nvim libnvim cmake deps install appimage checkprefix +.PHONY: test lualint functionaltest unittest lint clint clean distclean nvim libnvim cmake deps install appimage checkprefix |