Skip to content

Commit 9e7e343

Browse files
committed
0.2.0 release
1 parent 4f489b9 commit 9e7e343

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package = "luacheck"
2+
version = "0.2.0-1"
3+
source = {
4+
url = "git://github.com/mpeterv/luacheck.git",
5+
tag = "0.2.0"
6+
}
7+
description = {
8+
summary = "A simple static analyzer",
9+
detailed = [[
10+
luacheck only looks for three things: non-standard global variables, unused local variables and redefinitions of existing local variables in the same scope.
11+
12+
luacheck provides a command-line interface as well as a small library which can be used from another Lua program.
13+
]],
14+
homepage = "https://github.com/mpeterv/luacheck",
15+
license = "MIT/X11"
16+
}
17+
dependencies = {
18+
"lua >= 5.1, < 5.3",
19+
"metalua-parser >= 0.7.3-2",
20+
"checks >= 1.0",
21+
"argparse >= 0.2.0",
22+
"ansicolors >= 1.0-1"
23+
}
24+
build = {
25+
type = "builtin",
26+
modules = {
27+
luacheck = "src/luacheck.lua",
28+
["luacheck.scan"] = "src/luacheck/scan.lua",
29+
["luacheck.check"] = "src/luacheck/check.lua",
30+
["luacheck.get_report"] = "src/luacheck/get_report.lua",
31+
["luacheck.format"] = "src/luacheck/format.lua"
32+
},
33+
install = {
34+
bin = {
35+
luacheck = "bin/luacheck.lua"
36+
}
37+
},
38+
copy_directories = {"spec", "doc"}
39+
}

0 commit comments

Comments
 (0)