mirror of
https://github.com/0x5eal/semver-luau.git
synced 2024-12-14 00:50:36 +00:00
14 lines
297 B
Text
14 lines
297 B
Text
--> Run stylua to check for formatting errors
|
|
|
|
local process = require("@lune/process")
|
|
|
|
local CommandBuilder = require("./exec")
|
|
|
|
process.exit(
|
|
CommandBuilder.new("stylua")
|
|
:withArg("--")
|
|
:withArg(".")
|
|
:withArgs(process.args)
|
|
:withStdioStrategy("forward")
|
|
:exec().code
|
|
)
|