forked from jeffzi/llscheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathllscheck-dev-1.rockspec
48 lines (41 loc) · 1.11 KB
/
llscheck-dev-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
package = "llscheck"
local package_version = "dev"
local rockspec_revision = "1"
version = package_version .. "-" .. rockspec_revision
source = {
url = "git+https://github.com/jeffzi/llscheck.git",
}
if package_version == "dev" then
source.branch = "main"
else
source.tag = "v" .. package_version
end
description = {
summary = "Human-friendly Lua code analysis powered by Lua Language Server.",
detailed = [[
LLSCheck is a command-line utility that leverages the Lua Language Server for linting and
static analysis of Lua code. It delivers user-friendly reports, enhancing readability compared
to raw JSON output. Moreover, LLSCheck seamlessly integrates with popular CI tools.
]],
homepage = "https://github.com/jeffzi/llscheck",
license = "MIT",
}
dependencies = {
"lua >= 5.1",
"ansicolors >=v1.0.2",
"argparse >= 0.7.0",
"lua-cjson >= 2.1.0.9",
"luafilesystem >= 1.8.0",
"penlight >= 1.11.0",
}
build = {
type = "builtin",
modules = {
llscheck = "src/llscheck.lua",
},
install = {
bin = {
llscheck = "bin/llscheck.lua",
},
},
}