You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In various fixes, where the first field in a class had the wrong indentation, the codefix modified the whole class instead of indenting the first field.
namespaceMySpace{internalsealedclassSomeClass{internalconststringName="Name";privatereadonlyDictionary<string,object>m_Cache;privateSomeClass(){// Some code}}}
The code fix change the indentation of the other field and the following properties/method to match the first.
It however did not change the indentation of the code blocks.
namespaceMySpace{internalsealedclassSomeClass{internalconststringName="Name";privatereadonlyDictionary<string,object>m_Cache;privateSomeClass(){// Some code}}}
Can the rule not use the .editorconfig indent_size=4 information to figure out which indentation is wrong?
The text was updated successfully, but these errors were encountered:
In various fixes, where the first field in a class had the wrong indentation, the codefix modified the whole class instead of indenting the first field.
The code fix change the indentation of the other field and the following properties/method to match the first.
It however did not change the indentation of the code blocks.
Can the rule not use the .editorconfig
indent_size=4
information to figure out which indentation is wrong?The text was updated successfully, but these errors were encountered: