remove comments as build script cannot use these in json

This commit is contained in:
Bjarke Berg
2021-06-15 10:47:04 +02:00
parent ceb4db4f45
commit 418ba569f1

View File

@@ -40,15 +40,15 @@
"source": "name",
"steps": [
{
"regex": "\\s", // whitespaces are not valid. Replace with _
"regex": "\\s",
"replacement": "_"
},
{
"regex": "-", // - are not valid. Replace with _
"regex": "-",
"replacement": "_"
},
{
"regex": "^[^a-zA-Z_]+", // should start with a-z, A-Z or _ to be a valid namespace
"regex": "^[^a-zA-Z_]+",
"replacement": "_"
}
]