-
Notifications
You must be signed in to change notification settings - Fork 878
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
Try different argument --regex #1669
Conversation
--ignore-regex IGNORE_REGEX regular expression that is used to find patterns to ignore by treating as whitespace. When writing regular expressions, consider ensuring there are boundary non-word chars, e.g., "\bmatch\b". Defaults to empty/disabled. ... -r REGEX, --regex REGEX regular expression that is used to find words. By default any alphanumeric character, the underscore, the hyphen, and the apostrophe is used to build words. This option cannot be specified together with --write-changes.
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## main #1669 +/- ##
=======================================
Coverage 81.69% 81.69%
=======================================
Files 18 18
Lines 1393 1393
Branches 271 271
=======================================
Hits 1138 1138
Misses 209 209
Partials 46 46 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
related #1661 |
* Try different argument --ignore-regex IGNORE_REGEX regular expression that is used to find patterns to ignore by treating as whitespace. When writing regular expressions, consider ensuring there are boundary non-word chars, e.g., "\bmatch\b". Defaults to empty/disabled. ... -r REGEX, --regex REGEX regular expression that is used to find words. By default any alphanumeric character, the underscore, the hyphen, and the apostrophe is used to build words. This option cannot be specified together with --write-changes. * Goose chase source code * Attempt to use args * Try default argparse generation Missing meta variable * Fix quotes * Try underscores
This wasn't supposed to be merged... going to revert to what was working. |
This reverts commit 99a0c46.
…)" (projectmesa#1671) This reverts commit 99a0c46.
--ignore-regex IGNORE_REGEX
regular expression that is used to find patterns to ignore by treating as whitespace. When writing
regular expressions, consider ensuring there are boundary non-word chars, e.g., "\bmatch\b".
Defaults to empty/disabled.
...
-r REGEX, --regex REGEX
regular expression that is used to find words. By default any alphanumeric character, the
underscore, the hyphen, and the apostrophe is used to build words. This option cannot be specified
together with --write-changes.