-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.json
34 lines (34 loc) · 959 Bytes
/
settings.json
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
{
"files.exclude": {
"**/.github": true,
"**/screenshots/": true,
"**/.editorconfig": true,
"**/.gitignore": true,
"**/.lua-format-config.yml": true,
"**/FUNDING.yml": true,
"**/LICENSE": true
},
"editor.renderWhitespace": "all",
"editor.rulers": [80],
"explorer.sortOrderLexicographicOptions": "lower", // Case sensitive file ordering in tree
"editor.semanticHighlighting.enabled": true,
"workbench.iconTheme": "material-icon-theme",
"Lua.diagnostics.globals": [
"game",
"script",
"remote",
"commands",
"settings",
"rcon",
"rendering",
"global",
"defines",
"serpent",
"log",
"localised_print",
"table_size"
],
"vscode-lua-format.configPath": ".lua-format-config.yml",
"cSpell.words": ["Factorio"],
"Lua.diagnostics.disable": ["undefined-doc-name"]
}