changeset-id
Why?
You might want to enforce a naming pattern for the id of your changeset.
The changeset-id
will fail if the given regex does not match against the id
of the changeset.
Options
pattern
- (regex, as string) regular expression that theid
of anychangeset
must adhere to
Example Usage
{
"rules": {
"changeset-id": {
"enabled": true,
"pattern": "^\\d{8}_[a-z_]+$"
}
}
}