Skip to content

Commit cb8f292

Browse files
committed
Update configs
1 parent 6ea7852 commit cb8f292

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ end_of_line = lf
99
charset = utf-8
1010
trim_trailing_whitespace = true
1111

12-
[*.lua]
12+
[*.{lua,lua2p,sh,cmd}]
1313
indent_style = tab
1414
insert_final_newline = true
1515

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,6 @@ coverage.xml
165165
.pydevproject
166166
# Sphinx documentation
167167
docs/_build
168+
169+
# lua2p debug files
170+
*.meta.lua

.vscode/extensions.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"recommendations": [
33
"eamodio.gitlens",
44
"justarandomgeek.factoriomod-debug",
5-
"coenraads.bracket-pair-colorizer-2",
65
"sumneko.lua",
76
"davidanson.vscode-markdownlint",
87
"editorconfig.editorconfig",

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,10 @@
6666
"restructuredtext.confPath": "${workspaceFolder}\\predocs",
6767
"restructuredtext.builtDocumentationPath" : "${workspaceFolder}/docs/_build/html",
6868
"restructuredtext.updateOnTextChanged" : "false",
69-
"restructuredtext.updateDelay" : 1000,
69+
"restructuredtext.updateDelay": 1000,
70+
"Lua.diagnostics.disable": [
71+
"lowercase-global",
72+
"undefined-doc-name",
73+
"undefined-doc-class"
74+
],
7075
}

0 commit comments

Comments
 (0)