Skip to content

xpol/linter-luacheck

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
This branch is 73 commits behind AtomLinter:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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:

  • Executable Path to your luacheck executable.

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.

About

Atom Linter module. Lint Lua on the fly, using luacheck

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages

  • CoffeeScript 100.0%