Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Lua: luacheck

LCD 47 edited this page Jun 12, 2016 · 4 revisions

This file is no longer maintained

This file exists only as a historic reference. Documentation for syntastic checkers is now included in the manual, please see :help syntastic-checkers in Vim.


Maintainer: Thiago Bastos tbastos@tbastos.com

Luacheck is a tool for static analysis of Lua code. In contrast to luac which only flags syntax errors, this checker detects code smells, so you probably want to enable both when available.

Here are some sensible options:

let g:syntastic_check_on_open = 1
let g:syntastic_lua_checkers = ["luac", "luacheck"]
let g:syntastic_lua_luacheck_args = "--no-unused-args" 
Clone this wiki locally