Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 677 Bytes

prefer-placeholders.md

File metadata and controls

32 lines (22 loc) · 677 Bytes

Prefer Placeholders for Text Fields (@raycast/prefer-placeholders)

For a better visual experience, add placeholders in text field and text area components.

Rule Details

This rule checks if you have added a placeholder in the <Form.TextField> and <Form.TextAarea> components.

Examples of incorrect code for this rule:

<Form.TextField title="Name" />
<Form.TextArea title="Summary" />

Examples of correct code for this rule:

<Form.TextField placeholder="John Doe" title="Name" />
<Form.TextArea
  placeholder="Write a brief description here..."
  title="Summary"
/>