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 /src/nvim/options.lua | |
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 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 30409807aa..27f72f6441 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -40,7 +40,7 @@ local imacros=function(s) return '(intptr_t)' .. s end end -local N_=function(s) -- luacheck: ignore 211 +local N_=function(s) -- luacheck: ignore 211 (currently unused) return function() return 'N_(' .. cstr(s) .. ')' end |