During discovering project scripts, i noticed that this part is likely to be incorrect. What we want is to exclude files that end with index, matrix or skeleton.
But regex excludes files that end with a character that appears in previously mentioned strings instead. For example, it excludes filenames like wwwi.xml, because it ends with i, which appears in index. Or yyyx.xml, because it ends with the same character matrix ends.
I believe it is not the expected behavior.
I'll open PR in advance with the corrected regex, which will exclude files that end with index, matrix or skeleton. names.
During discovering project scripts, i noticed that this part is likely to be incorrect. What we want is to exclude files that end with
index
,matrix
orskeleton
. But regex excludes files that end with a character that appears in previously mentioned strings instead. For example, it excludes filenames likewwwi.xml
, because it ends withi
, which appears inindex
. Oryyyx.xml
, because it ends with the same charactermatrix
ends. I believe it is not the expected behavior.I'll open PR in advance with the corrected regex, which will exclude files that end with index, matrix or skeleton. names.