Initial push
This commit is contained in:
commit
ee69c03334
31 changed files with 1578 additions and 0 deletions
14
.lune/check.luau
Normal file
14
.lune/check.luau
Normal file
|
@ -0,0 +1,14 @@
|
|||
--!nocheck
|
||||
local process = require("@lune/process")
|
||||
|
||||
local function start_process(cmd: string)
|
||||
local arguments = string.split(cmd, " ")
|
||||
local command = arguments[1]
|
||||
table.remove(arguments, 1)
|
||||
|
||||
process.spawn(command, arguments, { stdio = "forward" })
|
||||
end
|
||||
|
||||
start_process("lune run analyze")
|
||||
start_process("stylua lib/")
|
||||
start_process("selene lib/")
|
Loading…
Add table
Add a link
Reference in a new issue