chore: put LuaLS config in .luarc.json #49
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
mupen64/ugui!49
Loading…
Reference in a new issue
No description provided.
Delete branch "luarc-json"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Moves LuaLS config from
.vscode/settings.jsonto.luarc.json.Pull request overview
Moves Lua Language Server (LuaLS) configuration out of editor-specific VS Code workspace settings into a repo-wide
.luarc.jsonso the same settings apply across editors that support LuaLS.Changes:
.vscode/settings.json..luarc.jsonwith LuaLS schema, runtime version, and formatting/diagnostics settings.Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
.vscode/settings.json.luarc.json💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
@ -0,0 +11,4 @@"max_line_length": "8000","trailing_table_separator": "smart","detect_end_of_line": "false","insert_final_newline": "true",This migration is not equivalent to the prior VS Code settings: the previous formatter config set
end_of_linetocrlf, but that option is missing from the newformat.defaultConfig. If CRLF output is required (especially on Windows), addend_of_lineback so formatting doesn’t change unexpectedly.@ -0,0 +41,4 @@},"diagnostics.disable": ["lowercase-global"]This PR description says it moves the existing LuaLS config, but
.luarc.jsondrops the previously configureddiagnostics.globals(e.g.,wgui,d2d,emu). If those globals are still expected, add them back under"diagnostics.globals"to preserve the prior diagnostics behavior.