You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"folder-and-file-name-is-valid": !sparcFolderAndFileRegex.test(stringToTest),// returns true if the string is valid
4366
4367
"file-is-hidden": stringToTest.startsWith("."),// returns true if the string is hidden
4367
4368
"file-is-in-forbidden-files-list": namesOfForbiddenFiles?.[stringToTest],// returns true if the string is in the forbidden files list
4368
4369
"string-adheres-to-identifier-conventions": identifierConventionsRegex.test(stringToTest),// returns true if the string adheres to the identifier conventions
4370
+
"string-contains-forbidden-characters": forbiddenCharacters.test(stringToTest),// returns true if the string contains forbidden characters
0 commit comments