-
Notifications
You must be signed in to change notification settings - Fork 13
feat(setup): add debug category to domain heuristics #6
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -333,6 +333,26 @@ class Colors: | |
| "data-", | ||
| "etl", | ||
| ], | ||
| "debug": [ | ||
| "debug", | ||
| "debugging", | ||
| "breakpoint", | ||
| "logger", | ||
| "logging", | ||
| "trace", | ||
| "profiler", | ||
| "profiling", | ||
| "devtools", | ||
| "inspector", | ||
| "monitor", | ||
| "troubleshoot", | ||
| "diagnostic", | ||
| "error-tracking", | ||
| "sentry", | ||
| "datadog", | ||
| "newrelic", | ||
| "bugtracking", | ||
|
Comment on lines
+351
to
+354
|
||
| ], | ||
| "education": [ | ||
| "learning", | ||
| "course", | ||
|
|
||
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.
get_category_for_skillnormalizes incoming skill names to hyphen-separated text before doingkw in name_lowermatching, so a skill named likebug-tracking-*will not match the newly addedbugtrackingtoken. In the common case where that skill name does not also contain another debug keyword, it will still fall through to_uncategorized, reducing categorization accuracy for the new debug domain.Useful? React with 👍 / 👎.