-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
A space is added after the @. The Code is not working after formatting and i don't see a configuration to disable adding the space.
Language: C#
Config:
{
"C#": {
"indent_comments": true,
"indent_style": "space",
"indent_size": 2,
"max_preserve_newlines": 10,
"quotes": "none",
"wrap_line_length": 80,
"break_chained_methods": false,
"multiline_ternary": "always",
"align_assignments": false,
"beautifiers": [
"Pretty Diff"
]
}
}
Input:
public test()
{
//Script wird gestartet
Process.Start(@"\\ATHENE\Users\frottmann\Desktop\testPolicy\PolicyTest.bat");
return null;
}
Output:
public test() {
//Script wird gestartet
**Process.Start(@ "\\ATHENE\Users\frottmann\Desktop\testPolicy\PolicyTest.bat");**
return null;
}
Expected behavior:
Reactions are currently unavailable