mirror of
https://github.com/pesde-pkg/tooling.git
synced 2024-12-12 15:20:36 +00:00
18 lines
441 B
Text
18 lines
441 B
Text
|
--> Run luau-lsp analysis to check for type errors
|
||
|
|
||
|
local process = require("@lune/process")
|
||
|
|
||
|
local CommandBuilder = require("./exec")
|
||
|
|
||
|
local PLATFORM_SEP = if process.os == "windows" then ";" else ":"
|
||
|
|
||
|
process.exit(
|
||
|
CommandBuilder.new("luau-lsp")
|
||
|
:withArg("analyze")
|
||
|
:withArgs({ "--settings", ".vscode/settings.json" })
|
||
|
:withArgs({ "--ignore", "'**/*_packages/**'" })
|
||
|
:withArg(".")
|
||
|
:withStdioStrategy("forward")
|
||
|
:exec().code
|
||
|
)
|