]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Adds formatting issue analyzing in Omnisharp (VSCode) (#15809)
authorFlipp Syder <76629141+vulppine@users.noreply.github.com>
Sat, 29 Apr 2023 16:26:13 +0000 (09:26 -0700)
committerGitHub <noreply@github.com>
Sat, 29 Apr 2023 16:26:13 +0000 (02:26 +1000)
.editorconfig
.vscode/settings.json [new file with mode: 0644]
omnisharp.json [new file with mode: 0644]

index 3e71517eba6de2d74bf4d94c2f017987818f0ce3..0409377f1dd9894947b4e367c8f635a9614691c8 100644 (file)
@@ -196,7 +196,7 @@ csharp_preserve_single_line_blocks = true
 #dotnet_naming_style.begins_with_i.word_separator =
 #dotnet_naming_style.begins_with_i.capitalization = pascal_case
 
-
+dotnet_diagnostic.IDE0055.severity = warning
 
 dotnet_naming_rule.constants_rule.severity = warning
 dotnet_naming_rule.constants_rule.style = upper_camel_case_style
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644 (file)
index 0000000..eed7d29
--- /dev/null
@@ -0,0 +1,3 @@
+{
+    "omnisharp.analyzeOpenDocumentsOnly": true
+}
diff --git a/omnisharp.json b/omnisharp.json
new file mode 100644 (file)
index 0000000..6da6166
--- /dev/null
@@ -0,0 +1,6 @@
+{
+    "RoslynExtensionsOptions": {
+        "DocumentAnalysisTimeoutMs": 600000,
+        "EnableAnalyzersSupport": true
+    }
+}