aboutsummaryrefslogtreecommitdiff
path: root/src/.editorconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/.editorconfig')
-rw-r--r--src/.editorconfig9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/.editorconfig b/src/.editorconfig
index 757e49d..9f0e74b 100644
--- a/src/.editorconfig
+++ b/src/.editorconfig
@@ -44,11 +44,12 @@ dotnet_diagnostic.IDE0055.severity = warning
# Sort using and Import directives with System.* appearing first
dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = false
+
# Avoid "this." and "Me." if not necessary
dotnet_style_qualification_for_field = true:refactoring
dotnet_style_qualification_for_property = true:refactoring
-dotnet_style_qualification_for_method = true:refactoring
-dotnet_style_qualification_for_event = true:refactoring
+dotnet_style_qualification_for_method = false:refactoring
+dotnet_style_qualification_for_event = false:refactoring
# Use language keywords instead of framework type names for type references
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
@@ -143,6 +144,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 +230,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