-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
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
chore: exclude files with empty strings checker #88
Conversation
@rndquu could you maybe look at this, unsure why no reviewer was assigned 🤔 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rndquu I believe that the reason the CI passed was because you used single quote strings ('') which was not detected by the regex. Normally from what i've figured the linter would convert all the single quote strings to double quotes which would've been detected by the CI. I've changed the regex so it would match single quote strings, but that made it so the regex itself would also be detected and I know you wanted me to remove the default value from Here's the CI https://github.com/wellneverknow/ts-template/actions/runs/12089305564 I can either:
Let me know which works best for you! |
@obeys, this task has been idle for a while. Please provide an update. |
waiting on @rndquu |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You may keep the old regex which only matches double quotes (""), this task for excluding certain files from the CI check |
I've added Here's a check failing because |
@rndquu |
Resolves #82
Changes:
no-empty-strings.yml
empty-string-checker.ts
to take in file paths from the workflowQA:
How to QA and setup: