Numbers in module names are also permitted by the Phobos style guide
This commit is contained in:
parent
0aa1e20595
commit
1c87c48aa0
|
@ -18,7 +18,7 @@ class StyleChecker : BaseAnalyzer
|
|||
{
|
||||
enum varFunNameRegex = `^([\p{Ll}_][_\w\d]*|[\p{Lu}\d_]+)$`;
|
||||
enum aggregateNameRegex = `^\p{Lu}[\w\d]*$`;
|
||||
enum moduleNameRegex = `^\p{Ll}+$`;
|
||||
enum moduleNameRegex = `^[\p{Ll}_\d]+$`;
|
||||
|
||||
this(string fileName)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue