You can customize the highlighting for Unity in Preferences | Editor | Color Scheme | Unity. For other Inspection you can specify the severity you need in Preferences | Editor | Inspection Settings | Inspection Severity. Let me know if that helps.
Please check settings in `Preferences | Editor | Code Cleanup | Use explicit or implicit modifiers` for changing the behavior for adding `private` and `Preferences | Editor | General | Code Completion | Automatically insert parentheses after completion` for autocomplete of parenthesis.
As for `switch`, if you create one case, then you can Alt+Enter on `switch` and you will be suggested to generate the rest of the switch labels automatically.
Hello Laurent,
You can customize the highlighting for Unity in Preferences | Editor | Color Scheme | Unity. For other Inspection you can specify the severity you need in Preferences | Editor | Inspection Settings | Inspection Severity. Let me know if that helps.
wonderful
how do I turn off automated adding of "private" and prevent the addition of () {} on autocomplete?
also how do I add or turn on autogeneration of switch case for every member of a enum?
Please check settings in `Preferences | Editor | Code Cleanup | Use explicit or implicit modifiers` for changing the behavior for adding `private` and `Preferences | Editor | General | Code Completion | Automatically insert parentheses after completion` for autocomplete of parenthesis.
As for `switch`, if you create one case, then you can Alt+Enter on `switch` and you will be suggested to generate the rest of the switch labels automatically.