selene-lib 0.30.0

A library for linting Lua code. You probably want selene instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error[undefined_variable]: `foo` is not defined
  ┌─ shadowing.lua:1:7
  │
1 │ print(foo)
  │       ^^^

error[undefined_variable]: `foo` is not defined
  ┌─ shadowing.lua:2:13
  │
2 │ local foo = foo + 1
  │             ^^^