linter-luacheck Archived: ... Source Code has been archived

Lint Lua on the fly, using luacheck

AtomLinter

13,522

16

2.0.1

MIT

GitHub

This package provides the following services:

linter-luacheck

Mac Windows Linux
mac-badge win-badge linux-badge

This package will lint your opened Lua files in Atom, using luacheck.

Installation

Configuration

Atom -> Preferences... -> Packages -> linter-luacheck -> Settings:

To config luacheck, you may:

Use config file named .luacheckrc (in project root and/or Lua source dirs).

Example .luacheckrc at project root:

files['*.rockspec'].global = false
files['.luacheckrc'].global = false
files['spec/*_spec.lua'].std = 'min+busted'

Or use luacheck inline options.

Example project/luafile.lua:

local lib = {}
function lib.add(self, a, b) -- luacheck: ignore self
  return a+b
end

Contribute

Bugs, ideas and pull requests please go to AtomLinter/linter-luacheck.