We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current version with ^[A-Za-z0-9\\.]+$ regex is too weak, as it allows the filenames like ASd.js.js, ASDJS.js, ....js, etc.
^[A-Za-z0-9\\.]+$
ASd.js.js
ASDJS.js
....js
The text was updated successfully, but these errors were encountered:
It there a real use case for this? The original idea was to avoid kebab and snake cases, and other non-alphanumeric symbols
Sorry, something went wrong.
No branches or pull requests
Current version with
^[A-Za-z0-9\\.]+$
regex is too weak, as it allows the filenames likeASd.js.js
,ASDJS.js
,....js
, etc.The text was updated successfully, but these errors were encountered: