blob: 01b4b77c6a86c2fd4daf98c31695b53d9ac82358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
return {
cmd = { "vscode-css-language-server", "--stdio" },
filetypes = { "css", "scss", "less" },
root_markers = { "package.json", ".git" },
single_file_support = true,
init_options = { provideFormatter = true },
settings = {
css = { validate = true },
scss = { validate = true },
less = { validate = true },
},
}
|