add lua diagnostics to pipeline
This commit is contained in:
parent
60ec3a6132
commit
ae40dd7232
13
.luacheckrc
13
.luacheckrc
|
@ -2,6 +2,19 @@ unused_args = false
|
|||
allow_defined_top = true
|
||||
max_line_length = false
|
||||
|
||||
exclude_files = {
|
||||
'./scripts',
|
||||
'./bin',
|
||||
'./logs',
|
||||
'./node_modules',
|
||||
'./sounds',
|
||||
'./textures',
|
||||
'./models',
|
||||
'./docs',
|
||||
'./locale',
|
||||
'./types',
|
||||
}
|
||||
|
||||
globals = {
|
||||
'XBows',
|
||||
'XBowsQuiver',
|
||||
|
|
|
@ -5,7 +5,7 @@ pipelines:
|
|||
"**":
|
||||
- parallel:
|
||||
- step:
|
||||
name: Lint code
|
||||
name: Lua Check
|
||||
script:
|
||||
- apt-get update
|
||||
- apt-get -y install lua5.1
|
||||
|
@ -25,7 +25,7 @@ pipelines:
|
|||
master:
|
||||
- parallel:
|
||||
- step:
|
||||
name: Lint code
|
||||
name: Lua Check
|
||||
script:
|
||||
- apt-get update
|
||||
- apt-get -y install lua5.1
|
||||
|
@ -45,7 +45,7 @@ pipelines:
|
|||
"*":
|
||||
- parallel:
|
||||
- step:
|
||||
name: Lint code
|
||||
name: Lua Check
|
||||
script:
|
||||
- apt-get update
|
||||
- apt-get -y install lua5.1
|
||||
|
|
Ŝarĝante…
Reference in New Issue