-
Notifications
You must be signed in to change notification settings - Fork 226
Add missing technical terms to Vale vocabulary #5268
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 |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ | |
| Adobe | ||
| AEO | ||
| agentic | ||
| Ahrefs | ||
| AI | ||
| allowlist | ||
| Anthropic | ||
|
|
@@ -15,10 +16,12 @@ APISection | |
| appId | ||
| args | ||
| ARIA | ||
| Astro | ||
| async | ||
| AsyncAPI | ||
| (?i)auth | ||
| Auth0 | ||
| autocomplete | ||
| autofocus(es)? | ||
| (?i)autogenerat(e|ed|ing)? | ||
| automations? | ||
|
|
@@ -77,9 +80,10 @@ Ctrl | |
| ctx | ||
| cURL | ||
| debounce[ds]? | ||
| deduplication | ||
| (?i)deduplic(ated?|ation) | ||
| desc | ||
| Dev | ||
| Devin | ||
| DevTools | ||
| diffs? | ||
| dir | ||
|
|
@@ -172,7 +176,7 @@ JS | |
| JSDoc | ||
| JSON | ||
| JSX | ||
| JWT | ||
| JWTs? | ||
| KaTeX | ||
| Kotlin | ||
| Kubernetes | ||
|
|
@@ -184,6 +188,7 @@ len | |
| Linear | ||
| Linux | ||
| (?i)lint(er|ing) | ||
| LLMs? | ||
| llmstxt | ||
| localhost | ||
|
|
@@ -273,6 +278,7 @@ projectToken | |
| proxied | ||
| proxying | ||
| PRs | ||
| PST | ||
| pytest | ||
| Python | ||
| QBRs | ||
|
|
@@ -284,14 +290,18 @@ ReadMe | |
| Readybot | ||
| redeploy(s|ed|ing)? | ||
| Redis | ||
| (?i)regex | ||
| repos? | ||
| req | ||
| res | ||
| REST | ||
| resubmit | ||
| revalidat(e|ion) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Regex misses "revalidates" found in documentation proseMedium Severity The pattern Reviewed by Cursor Bugbot for commit b28ebb2. Configure here. |
||
| ROI | ||
| Ronan | ||
| rpc | ||
| RSS | ||
| RTL | ||
| Ruby | ||
| RubyGems | ||
| rulesets? | ||
|
|
@@ -308,6 +318,7 @@ SEO | |
| serverless | ||
| sessionRecording | ||
| setup | ||
| Shiki | ||
| signup | ||
| siteId | ||
| (?i)sitemaps? | ||
|
|
@@ -319,12 +330,14 @@ sourcemaps? | |
| Speakeasy | ||
| specs | ||
| (?i)spellcheck | ||
| Splunk | ||
| Spring | ||
| sql | ||
| ssh | ||
| SSL | ||
| SSO | ||
| SSR | ||
| Squoosh | ||
| Stainless | ||
| stderr | ||
| stdin | ||
|
|
@@ -340,6 +353,7 @@ subschema | |
| subscribable | ||
| (?i)substring | ||
| SVGs? | ||
| SVGR | ||
| Swagger | ||
| Swift | ||
| Tabler | ||
|
|
@@ -372,10 +386,12 @@ ungroup(s|ed|ing)? | |
| unhide | ||
| Unix | ||
| uri | ||
| URIs | ||
| URL | ||
| URLs | ||
| useChat | ||
| UTC | ||
| UTF | ||
| util | ||
| UX | ||
| val | ||
|
|
||


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.
Regex misses "linters" found in documentation prose
Medium Severity
The pattern
(?i)lint(er|ing)matches "linter" and "linting" but not "linters", which appears inguides/style-and-tone.mdx(e.g., "Run Vale or other linters on every pull request"). The alternation needs to account for the plural form — something like(?i)lint(ers?|ing)— to prevent a false positive Vale warning.Reviewed by Cursor Bugbot for commit b28ebb2. Configure here.