Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions .vale/styles/config/vocabularies/Mintlify/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Adobe
AEO
agentic
Ahrefs
AI
allowlist
Anthropic
Expand All @@ -15,10 +16,12 @@ APISection
appId
args
ARIA
Astro
async
AsyncAPI
(?i)auth
Auth0
autocomplete
autofocus(es)?
(?i)autogenerat(e|ed|ing)?
automations?
Expand Down Expand Up @@ -77,9 +80,10 @@ Ctrl
ctx
cURL
debounce[ds]?
deduplication
(?i)deduplic(ated?|ation)
desc
Dev
Devin
DevTools
diffs?
dir
Expand Down Expand Up @@ -172,7 +176,7 @@ JS
JSDoc
JSON
JSX
JWT
JWTs?
KaTeX
Kotlin
Kubernetes
Expand All @@ -184,6 +188,7 @@ len
Linear
LinkedIn
Linux
(?i)lint(er|ing)
Copy link
Copy Markdown

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 in guides/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.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b28ebb2. Configure here.

LLMs?
llmstxt
localhost
Expand Down Expand Up @@ -273,6 +278,7 @@ projectToken
proxied
proxying
PRs
PST
pytest
Python
QBRs
Expand All @@ -284,14 +290,18 @@ ReadMe
Readybot
redeploy(s|ed|ing)?
Redis
(?i)regex
repos?
req
res
REST
resubmit
revalidat(e|ion)
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Regex misses "revalidates" found in documentation prose

Medium Severity

The pattern revalidat(e|ion) matches "revalidate" and "revalidation" but not "revalidates", which appears in deploy/github.mdx alt text (e.g., "the green check mark that revalidates the repository settings"). The alternation needs to include the third-person singular form — something like revalidat(es?|ion) — to avoid a false positive Vale warning for that existing word.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b28ebb2. Configure here.

ROI
Ronan
rpc
RSS
RTL
Ruby
RubyGems
rulesets?
Expand All @@ -308,6 +318,7 @@ SEO
serverless
sessionRecording
setup
Shiki
signup
siteId
(?i)sitemaps?
Expand All @@ -319,12 +330,14 @@ sourcemaps?
Speakeasy
specs
(?i)spellcheck
Splunk
Spring
sql
ssh
SSL
SSO
SSR
Squoosh
Stainless
stderr
stdin
Expand All @@ -340,6 +353,7 @@ subschema
subscribable
(?i)substring
SVGs?
SVGR
Swagger
Swift
Tabler
Expand Down Expand Up @@ -372,10 +386,12 @@ ungroup(s|ed|ing)?
unhide
Unix
uri
URIs
URL
URLs
useChat
UTC
UTF
util
UX
val
Expand Down
Loading