Skip to content

Commit f36b0fb

Browse files
committed
0.7.0 release
1 parent 67df4ca commit f36b0fb

2 files changed

Lines changed: 43 additions & 1 deletion

File tree

bin/luacheck.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/env lua
2-
local version = "0.6.0"
2+
local version = "0.7.0"
33

44
local function fatal(msg)
55
io.stderr:write("Fatal error: "..msg.."\n")
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
package = "luacheck"
2+
version = "0.7.0-1"
3+
source = {
4+
url = "git://github.com/mpeterv/luacheck.git",
5+
tag = "0.7.0"
6+
}
7+
description = {
8+
summary = "A simple static analyzer for Lua",
9+
detailed = [[
10+
Luacheck is a tool for linting and static analysis of Lua code. It is able to spot usage of undefined global variables, unused local variables and a few other typical problems within Lua programs.
11+
]],
12+
homepage = "https://github.com/mpeterv/luacheck",
13+
license = "MIT/X11"
14+
}
15+
dependencies = {
16+
"lua >= 5.1, < 5.4",
17+
"argparse >= 0.3.0",
18+
"ansicolors >= 1.0-1",
19+
"luafilesystem >= 1.6.2"
20+
}
21+
build = {
22+
type = "builtin",
23+
modules = {
24+
luacheck = "src/luacheck.lua",
25+
["luacheck.scan"] = "src/luacheck/scan.lua",
26+
["luacheck.check"] = "src/luacheck/check.lua",
27+
["luacheck.parser"] = "src/luacheck/parser.lua",
28+
["luacheck.lexer"] = "src/luacheck/lexer.lua",
29+
["luacheck.filter"] = "src/luacheck/filter.lua",
30+
["luacheck.options"] = "src/luacheck/options.lua",
31+
["luacheck.stds"] = "src/luacheck/stds.lua",
32+
["luacheck.expand_rockspec"] = "src/luacheck/expand_rockspec.lua",
33+
["luacheck.utils"] = "src/luacheck/utils.lua",
34+
["luacheck.format"] = "src/luacheck/format.lua"
35+
},
36+
install = {
37+
bin = {
38+
luacheck = "bin/luacheck.lua"
39+
}
40+
},
41+
copy_directories = {"spec", "doc"}
42+
}

0 commit comments

Comments
 (0)