Shared coding conventions allow teams to collaborate effectively. This rule checks that all file names match a provided regular expression.

Noncompliant Code Example

With default regular expression: ^[a-z][-A-Za-z0-9]*.feature$
MyFeature.feature

Compliant Solution

With default regular expression: ^[a-z][-A-Za-z0-9]*.feature$
my-feature.feature