Interface DelimiterRules

Rules for how delimiters can be used

interface DelimiterRules {
    allowAdjacentHyphenUnderscore: boolean;
    allowConsecutiveHyphens: boolean;
    allowConsecutiveUnderscores: boolean;
    allowLeadingTrailingHyphens: boolean;
    allowLeadingTrailingUnderscores: boolean;
}

Properties

allowAdjacentHyphenUnderscore: boolean
allowConsecutiveHyphens: boolean
allowConsecutiveUnderscores: boolean
allowLeadingTrailingHyphens: boolean
allowLeadingTrailingUnderscores: boolean