mirror of
https://github.com/CompeyDev/lune-luau-template.git
synced 2024-12-12 12:50:41 +00:00
11 lines
223 B
Text
Executable file
11 lines
223 B
Text
Executable file
--> Formats source code using stylua
|
|
|
|
local command = require("util/command")
|
|
local process = require("@lune/process")
|
|
|
|
command.run(
|
|
"stylua",
|
|
"--verbose",
|
|
process.args[2] or "",
|
|
process.args[1] or "src/"
|
|
)
|