-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestable.code-workspace
More file actions
48 lines (48 loc) · 1.6 KB
/
Copy pathtestable.code-workspace
File metadata and controls
48 lines (48 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"extensions": {
"recommendations": ["JohnnyMorganz.luau-lsp", "JohnnyMorganz.stylua"]
},
"folders": [
{
"path": "."
}
],
"settings": {
"[lua]": {
"editor.defaultFormatter": "JohnnyMorganz.stylua",
"editor.formatOnSave": true
},
"[luau]": {
"editor.defaultFormatter": "JohnnyMorganz.stylua",
"editor.formatOnSave": true
},
"editor.rulers": [
{
"color": "#ffffff10",
"column": 90 // For comments
},
{
"color": "#ffffff10",
"column": 120 // For code
}
],
"luau-lsp.completion.autocompleteEnd": true,
"luau-lsp.completion.enableFragmentAutocomplete": true,
"luau-lsp.completion.fillCallArguments": false,
"luau-lsp.completion.imports.enabled": true,
"luau-lsp.completion.imports.separateGroupsWithLine": true,
"luau-lsp.completion.imports.stringRequires.enabled": true,
"luau-lsp.fflags.enableNewSolver": true,
"luau-lsp.hover.multilineFunctionDefinitions": true,
"luau-lsp.hover.showTableKinds": true,
"luau-lsp.inlayHints.hideHintsForErrorTypes": true,
"luau-lsp.sourcemap.autogenerate": true,
"luau-lsp.sourcemap.enabled": true,
"luau-lsp.sourcemap.rojoProjectFile": "dev.project.json",
"luau-lsp.sourcemap.sourcemapFile": "sourcemap.json",
"search.exclude": {
"**/Submodules/**": true
},
"search.useIgnoreFiles": true
}
}