Indentation inside string
This is version 3.1 and I tried parentheses and it fixes the reported "if", so this works: if ((depX is int) && (depY is int) && (depW is int) && (depH is int)) But on this line: public bool available => (ProjectDir != null) && (JsonFile != null) && (ProjectFile != null) && (Model != null); it is still changed to public bool available => (ProjectDir != null)&& (JsonFile != null)&& (ProjectFile != null)&& (Model != null); even with parentheses around the entire expression: public bool available =>...
mixed line endings not fixed
Enforce exactly one CR/LF at EOF
C#: "goto case" is not indented properly
Initializer code not properly indented
C#: && sometimes mistaken for reference
Not sure if this is related but typedef foo { const int bar; int baz; }; is indented...