forked from mpeterv/luacheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
luacheck-scm-1.rockspec
53 lines (53 loc) · 2.21 KB
/
luacheck-scm-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package = "luacheck"
version = "scm-1"
source = {
url = "git+https://github.com/mpeterv/luacheck.git"
}
description = {
summary = "A static analyzer and a linter for Lua",
detailed = [[
Luacheck is a command-line 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.
]],
homepage = "https://github.com/mpeterv/luacheck",
license = "MIT <http://opensource.org/licenses/MIT>"
}
dependencies = {
"lua >= 5.1, < 5.4",
"luafilesystem >= 1.6.3"
}
build = {
type = "builtin",
modules = {
luacheck = "src/luacheck/init.lua",
["luacheck.main"] = "src/luacheck/main.lua",
["luacheck.config"] = "src/luacheck/config.lua",
["luacheck.linearize"] = "src/luacheck/linearize.lua",
["luacheck.analyze"] = "src/luacheck/analyze.lua",
["luacheck.reachability"] = "src/luacheck/reachability.lua",
["luacheck.core_utils"] = "src/luacheck/core_utils.lua",
["luacheck.check"] = "src/luacheck/check.lua",
["luacheck.parser"] = "src/luacheck/parser.lua",
["luacheck.lexer"] = "src/luacheck/lexer.lua",
["luacheck.filter"] = "src/luacheck/filter.lua",
["luacheck.options"] = "src/luacheck/options.lua",
["luacheck.inline_options"] = "src/luacheck/inline_options.lua",
["luacheck.builtin_standards"] = "src/luacheck/builtin_standards.lua",
["luacheck.expand_rockspec"] = "src/luacheck/expand_rockspec.lua",
["luacheck.multithreading"] = "src/luacheck/multithreading.lua",
["luacheck.cache"] = "src/luacheck/cache.lua",
["luacheck.format"] = "src/luacheck/format.lua",
["luacheck.version"] = "src/luacheck/version.lua",
["luacheck.fs"] = "src/luacheck/fs.lua",
["luacheck.globbing"] = "src/luacheck/globbing.lua",
["luacheck.utils"] = "src/luacheck/utils.lua",
["luacheck.argparse"] = "src/luacheck/argparse.lua",
["luacheck.whitespace"] = "src/luacheck/whitespace.lua",
["luacheck.detect_globals"] = "src/luacheck/detect_globals.lua",
["luacheck.standards"] = "src/luacheck/standards.lua"
},
install = {
bin = {
luacheck = "bin/luacheck.lua"
}
}
}