-
-
Notifications
You must be signed in to change notification settings - Fork 390
Open
Labels
feat/formatterRelated to code formatterRelated to code formatter
Description
How are you using the lua-language-server?
Visual Studio Code Extension (sumneko.lua)
Which OS are you using?
Windows
What is the issue affecting?
Formatting
Expected Behaviour
local buildings = {
{button = granaryButton, name = "Granary", description = "\nIncreases food capacity."},
{button = appleFarmButton, name = "Orchard", description = "\nProduces apples."},
{button = wheatFarmButton, name = "WheatFarm", description = "\nProduces wheat which can be processed into flour."},
{button = hopsFarmButton, name = "HopsFarm", description = "\nProduces hops which can be processed into ale."}
}Actual Behaviour
local buildings = {
{ button = granaryButton, name = "Granary", description = "\nIncreases food capacity." },
{ button = appleFarmButton, name = "Orchard", description = "\nProduces apples." },
{ button = wheatFarmButton, name = "WheatFarm", description = "\nProduces wheat which can be processed into flour." },
{ button = hopsFarmButton, name = "HopsFarm", description = "\nProduces hops which can be processed into ale." }
}Reproduction steps
- Have this .editorconfig in root:
root = true
[*]
indent_style = space
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.lua]
keep_one_space_between_table_and_bracket = false
align_continuous_assign_statement = false
align_continuous_rect_table_field = false
continuation_indent = 0
max_line_length = 200- Format a file
- Editorconfig is ignored completely, as well as default options set through vscode UI
Additional Notes
I have the Editorconfig extension loaded. I tried adding the setting inside VSCode UI for lua sumneko as well. To no avail.
Log File
No response
adoyle-h
Metadata
Metadata
Assignees
Labels
feat/formatterRelated to code formatterRelated to code formatter