Skip to content

VBC-927: vague-button-label

warning

Category: docs
Analysis: Regex (line by line)
File types: .html, .tsx, .jsx, .astro
Scope: source code only, ignoring anything inside strings and comments
Tags: ux documentation

What it reports

Vague button label '{match}' detected at line {line}. Use action-oriented labels (e.g., 'Save Changes', 'Create Account').

Flagged

html
<button>Submit</button>

Not flagged

html
<button>Create account</button>

Pattern

regex
<button.*?>\s*(Click|Submit|OK|Go)\s*</button>

Released under the MIT License.