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
For naming conventions, you must specify **symbols**, **style**, and a **severity**. Naming conventions should be ordered from most-specific to least-specific. The first rule encountered that can be applied, will be the only rule applied.
1231
+
For naming conventions, you must specify **symbols**, **style**, and a **severity**. Naming conventions should be ordered from most-specific to least-specific. The first rule encountered that can be applied, is the only rule applied.
1232
1232
1233
1233
### Severity
1234
1234
The following are valid options for the severity of a naming style rule
`none` and `silent` are synonymous and mean that no indication of any kind should be shown to the user. This has the effect of disabling this rule.
1238
1238
1239
-
`suggestion` means that the user will be shown the following in the Error List: and the following in the IDE. The `suggestion` severity will allow the naming rule to run, but it will not cause the build to break.
1239
+
`suggestion` means that the user is shown the following in the Error List: and the following in the IDE. The `suggestion` severity allows the naming rule to run, but it doesn't cause the build to break.
1240
1240
1241
1241
Severity | effect
1242
1242
------------ | -------------
1243
-
none/silent | Do not show anything to the user when this style is not being followed, however code generation features will generate in this style.
1243
+
none/silent | Do not show anything to the user when this style is not being followed, however code generation features generate in this style.
1244
1244
suggestion | When this style is not being followed, show it to the user as a suggestion (underlying dots on the first two characters).
1245
1245
warning | When this style is not being followed, show a compiler warning.
1246
1246
error | When this style is not being followed, show a compiler error.
@@ -1289,8 +1289,8 @@ Identify the naming style to apply to the symbols.
0 commit comments