diff options
| -rw-r--r-- | src/.editorconfig | 4 | ||||
| -rw-r--r-- | src/DevHive.code-workspace | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/src/.editorconfig b/src/.editorconfig index 7fa9b2a..ea2af21 100644 --- a/src/.editorconfig +++ b/src/.editorconfig @@ -143,6 +143,7 @@ dotnet_naming_style.pascal_case_style.capitalization = pascal_case # error RS2008: Enable analyzer release tracking for the analyzer project containing rule '{0}' dotnet_diagnostic.RS2008.severity = none +dotnet_diagnostic.CS1591.severity = none # IDE0073: File header dotnet_diagnostic.IDE0073.severity = warning @@ -228,3 +229,6 @@ csharp_space_between_square_brackets = false # Wrapping preferences csharp_preserve_single_line_blocks = true csharp_preserve_single_line_statements = true + +[/Data/DevHive.Data/Migrations/**] +dotnet_diagnostic.IDE0055.severity = none diff --git a/src/DevHive.code-workspace b/src/DevHive.code-workspace index 8511609..72c2301 100644 --- a/src/DevHive.code-workspace +++ b/src/DevHive.code-workspace @@ -15,7 +15,7 @@ { "name": "Common", "path": "./Common" - }, + } ], "settings": { "files.exclude": { @@ -23,14 +23,14 @@ "**/bin": true, "**/obj": true, - ".gitignore" : true, + ".gitignore": true }, "code-runner.fileDirectoryAsCwd": true, "dotnet-test-explorer.runInParallel": true, "dotnet-test-explorer.testProjectPath": "**/*.Tests.csproj", "omnisharp.enableEditorConfigSupport": true, "omnisharp.enableRoslynAnalyzers": true, - "prettier.useEditorConfig": true, + "prettier.useEditorConfig": true }, "launch": { "configurations": [ @@ -45,8 +45,8 @@ "stopAtEntry": false, "env": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - }, + } + } // { // "name": "Launch Data Tests", // "type": "coreclr", |
