mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-07 05:27:43 +00:00
96 lines
3.3 KiB
INI
96 lines
3.3 KiB
INI
# EditorConfig for QuanTAlib
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.cs]
|
|
|
|
resharper_check_namespace_highlighting = none
|
|
resharper_redundant_argument_default_value_highlighting = none
|
|
resharper_invalid_xml_doc_comment_highlighting = none
|
|
resharper_inconsistent_naming_highlighting = none
|
|
resharper_redundant_using_directive_highlighting = none
|
|
resharper_for_can_be_converted_to_foreach_highlighting = none
|
|
resharper_unused_parameter_local_highlighting = none
|
|
resharper_conditional_access_qualifier_is_non_nullable_according_to_api_contract_highlighting = none
|
|
resharper_redundant_lambda_parameter_type_highlighting = none
|
|
|
|
resharper_redundant_cast_highlighting = hint
|
|
resharper_redundant_assignment_highlighting = hint
|
|
resharper_not_accessed_field_local_highlighting = hint
|
|
resharper_unused_auto_property_accessor_global_highlighting = hint
|
|
resharper_condition_is_always_true_or_false_highlighting = hint
|
|
resharper_access_to_modified_closure_highlighting = hint
|
|
resharper_generic_enumerator_not_disposed_highlighting = hint
|
|
|
|
# Sonar rule suppressions (synced from sonar-suppressions.json)
|
|
# See sonar-suppressions.json for detailed justifications
|
|
dotnet_diagnostic.S107.severity = none
|
|
dotnet_diagnostic.S109.severity = none
|
|
dotnet_diagnostic.S122.severity = none
|
|
dotnet_diagnostic.S134.severity = none
|
|
dotnet_diagnostic.S138.severity = none
|
|
dotnet_diagnostic.S1067.severity = none
|
|
dotnet_diagnostic.S1144.severity = none
|
|
dotnet_diagnostic.S1227.severity = none
|
|
dotnet_diagnostic.S1244.severity = none
|
|
dotnet_diagnostic.S1309.severity = none
|
|
dotnet_diagnostic.S1451.severity = none
|
|
dotnet_diagnostic.S1541.severity = none
|
|
dotnet_diagnostic.S1659.severity = none
|
|
dotnet_diagnostic.S1944.severity = none
|
|
dotnet_diagnostic.S2053.severity = none
|
|
dotnet_diagnostic.S2245.severity = none
|
|
dotnet_diagnostic.S2259.severity = none
|
|
dotnet_diagnostic.S2360.severity = none
|
|
dotnet_diagnostic.S2583.severity = none
|
|
dotnet_diagnostic.S2589.severity = none
|
|
dotnet_diagnostic.S3236.severity = none
|
|
dotnet_diagnostic.S3254.severity = none
|
|
dotnet_diagnostic.S3264.severity = none
|
|
dotnet_diagnostic.S3329.severity = none
|
|
dotnet_diagnostic.S3604.severity = none
|
|
dotnet_diagnostic.S3655.severity = none
|
|
dotnet_diagnostic.S3776.severity = none
|
|
dotnet_diagnostic.S3904.severity = none
|
|
dotnet_diagnostic.S3906.severity = none
|
|
dotnet_diagnostic.S3908.severity = none
|
|
dotnet_diagnostic.S3949.severity = none
|
|
dotnet_diagnostic.S3966.severity = none
|
|
dotnet_diagnostic.S3990.severity = none
|
|
dotnet_diagnostic.S3992.severity = none
|
|
dotnet_diagnostic.S4035.severity = none
|
|
dotnet_diagnostic.S4158.severity = none
|
|
dotnet_diagnostic.S4347.severity = none
|
|
dotnet_diagnostic.S5773.severity = none
|
|
dotnet_diagnostic.S6781.severity = none
|
|
|
|
# Other suppressions
|
|
dotnet_diagnostic.IDE0028.severity = none
|
|
dotnet_diagnostic.CA1416.severity = none
|
|
dotnet_diagnostic.MA0046.severity = none
|
|
dotnet_diagnostic.MA0003.severity = suggestion
|
|
|
|
# Require curly braces on control structures
|
|
csharp_prefer_braces = true:warning
|
|
dotnet_diagnostic.IDE0011.severity = warning
|
|
|
|
csharp_style_var_for_built_in_types = false:silent
|
|
csharp_style_var_when_type_is_apparent = true:suggestion
|
|
csharp_style_var_elsewhere = false:silent
|
|
|
|
[ndepend/**]
|
|
dotnet_analyzer_diagnostic.severity = none
|
|
generated_code = true
|
|
|
|
[*.sh]
|
|
end_of_line = lf
|
|
indent_style = space
|
|
indent_size = 2
|