Skip to content

Commit

Permalink
Switch to lightbulb emoji to denote rule suggestions (#5473)
Browse files Browse the repository at this point in the history
docs: switch to lightbulb emoji to denote rule suggestions
  • Loading branch information
bmish committed Aug 16, 2022
1 parent a767224 commit f92e66a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/website/src/components/RulesTable/index.tsx
Expand Up @@ -36,7 +36,7 @@ function RuleRow({ rule }: { rule: RulesMeta[number] }): JSX.Element | null {
</td>
<td className={styles.attrCol}>
{rule.fixable ? '🔧\n' : '\n'}
{rule.hasSuggestions ? '🛠' : ''}
{rule.hasSuggestions ? '💡' : ''}
</td>
<td className={styles.attrCol}>
{rule.docs.requiresTypeChecking ? '💭' : ''}
Expand Down Expand Up @@ -168,7 +168,7 @@ export default function RulesTable({
<RuleFilterCheckBox
mode={showHasSuggestions}
setMode={setShowHasSuggestion}
label="🛠 has suggestions"
label="💡 has suggestions"
/>
<RuleFilterCheckBox
mode={showTypeCheck}
Expand All @@ -181,7 +181,7 @@ export default function RulesTable({
<tr>
<th className={styles.ruleCol}>Rule</th>
<th className={styles.attrCol}>{'\n'}🔒</th>
<th className={styles.attrCol}>🔧{'\n'}🛠</th>
<th className={styles.attrCol}>🔧{'\n'}💡</th>
<th className={styles.attrCol}>💭</th>
</tr>
</thead>
Expand Down
Expand Up @@ -55,7 +55,7 @@ export function RuleAttributes({ name }: { name: string }): JSX.Element | null {
</li>
<li>
<input type="checkbox" disabled checked={!!rule.hasSuggestions} />
🛠 Suggestion Fixer
💡 Suggestion Fixer
</li>
</ul>
</li>
Expand Down

0 comments on commit f92e66a

Please sign in to comment.