-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathluacheck.go
79 lines (68 loc) · 2.78 KB
/
luacheck.go
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
Copyright 2024 Qiniu Cloud (qiniu.com).
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package luacheck
import (
"context"
"strings"
"github.com/qiniu/reviewbot/internal/lint"
"github.com/qiniu/reviewbot/internal/util"
"github.com/qiniu/x/xlog"
)
// refer to https://github.com/mpeterv/luacheck
const linterName = "luacheck"
func init() {
lint.RegisterPullRequestHandler(linterName, luacheckHandler)
lint.RegisterLinterLanguages(linterName, []string{".lua"})
}
func luacheckHandler(ctx context.Context, a lint.Agent) error {
log := util.FromContext(ctx)
if lint.IsEmpty(a.LinterConfig.Args...) {
// identify global variables for Redis and Nginx modules.
// disable the maximum line length check, which is no need.
// luacheck execute the command "--globals='ngx KEYS ARGV table redis cjson'", which does not take effect.
// so the parameter should be changed to an array-based approach.
// luacheck will output lines starting with unrecognized characters, so add the parameter: --no-color
cmdArgs := []string{
".",
"--globals=ngx",
"--globals=KEYS",
"--globals=ARGV",
"--globals=table",
"--globals=redis",
"--globals=cjson",
"--no-max-line-length",
"--no-color",
}
a.LinterConfig.Args = append([]string{}, cmdArgs...)
}
// recommend to use the line-number format and disable the issued lines, since these are more friendly to the reviewbot
// checking on luacheck 0.26.1 Lua5.1, there is no problem even with multiple --no-color parameter,
// so we can add the parameter directly
a.LinterConfig.Args = append(a.LinterConfig.Args, "--no-color")
return lint.GeneralHandler(ctx, log, a, lint.ExecRun, parser)
}
func parser(log *xlog.Logger, output []byte) (map[string][]lint.LinterOutput, []string) {
lineParse := func(line string) (*lint.LinterOutput, error) {
// luacheck will output lines starting with 'Total ' or 'Checking '
// which are no meaningful for the reviewbot scenario, so we discard them
// such as:
// 1. Total: 0 warnings / 0 errors in 0 files
// 2. Checking cmd/jarviswsserver/etc/get_node_wsserver.lua 11 warnings
// 3. Empty line
if strings.HasPrefix(line, "Total: ") || strings.HasPrefix(line, "Checking ") || line == "" {
return nil, nil
}
return lint.GeneralLineParser(strings.TrimLeft(line, " "))
}
return lint.Parse(log, output, lineParse)
}