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
As argued here, state names should not contain delimiters . (confuses hierarchical states with a single state with a delimiter in its names) nor hash signs # (confuses state names with IDs).
Optionally, ban white space too.
Optionally, ban wildcards * (no good reason to support this).
Options (with defaults)
camelCase: [a-zA-Z0-9] - default
PascalCase: [a-zA-Z0-9]
snakeCase: [a-z0-9_]
: [-a-zA-Z0-9_:]
allowUnicode: false
allowWhitespace: false
allowWildcard: false
The text was updated successfully, but these errors were encountered:
As argued here, state names should not contain delimiters
.
(confuses hierarchical states with a single state with a delimiter in its names) nor hash signs#
(confuses state names with IDs).Optionally, ban white space too.
Optionally, ban wildcards
*
(no good reason to support this).Options (with defaults)
The text was updated successfully, but these errors were encountered: