-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Description
Need to implement command that convert
dotnet_diagnostic.CA2241.severity = warning
dotnet_diagnostic.CA2237.severity = none
dotnet_diagnostic.CA2235.severity = noneinto
dotnet_diagnostic.CA2235.severity = none
dotnet_diagnostic.CA2237.severity = none
dotnet_diagnostic.CA2241.severity = warningExpected result layout:
< values that shouldn't be formatter>
# Autoformatted values
[*.cs]
### IDE ###
# Remove this or Me qualification (IDE0003)
# Add this or Me qualification (IDE0009)
# These two rules define whether or not you prefer the use of this (C#) and Me. (Visual Basic) qualifiers.
dotnet_diagnostic.IDE0003.severity = warning
# - true - Prefer fields to be prefaced with this. in C# or Me. in Visual Basic
# - false - Prefer fields not to be prefaced with this. or Me.
# // dotnet_style_qualification_for_field = true
# this.capacity = 0;
#
# // dotnet_style_qualification_for_field = false
# capacity = 0;
dotnet_style_qualification_for_field = false
< other rules >
### CA ###
# Do not declare static members on generic types (CA1000)
# When a static member of a generic type is called, the type argument must be specified for the type.
dotnet_diagnostic.CA1000.severity = warningNext steps:
- Options for enabling/disabling IDE / CA formatting
- Option for grouping CA by category
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done