Catalogger.NET/.editorconfig

20 lines
1.2 KiB
INI
Raw Permalink Normal View History

2024-08-13 13:08:50 +02:00
root = true
2024-10-18 22:13:23 +02:00
# Rider complains that these keys aren't supported but they *are*
# noinspection EditorConfigKeyCorrectness
2024-08-13 13:08:50 +02:00
[*.cs]
# Responder classes are considered "unused" by ReSharper because they're only loaded through reflection.
resharper_unused_type_global_highlighting = none
# Command methods are also considered unused, for the same reason.
resharper_unused_member_global_highlighting = none
# Command classes are generally only referred to in type parameters.
resharper_class_never_instantiated_global_highlighting = none
2024-10-18 22:13:23 +02:00
# We use PostgresSQL which doesn't recommend more specific string types
resharper_entity_framework_model_validation_unlimited_string_length_highlighting = none
# This is raised for every single property of records returned by endpoints
resharper_not_accessed_positional_property_local_highlighting = none
# ReSharper yells at us for the name "GuildCache", for some reason
2024-10-29 21:32:33 +01:00
resharper_inconsistent_naming_highlighting = none
# From the docs: "You might consider excluding [FirstOrDefault or LastOrDefault] if readability is a concern,
# since the code you'd write to replace them is not easily readable."
dotnet_code_quality.CA1826.exclude_ordefault_methods = true