Skip to content

Commit a5836be

Browse files
authoredApr 10, 2021
docs(eslint-plugin): switch check marks to :white_check_mark: for visibility (#3277)
1 parent e6f0698 commit a5836be

File tree

3 files changed

+43
-43
lines changed

3 files changed

+43
-43
lines changed
 

‎packages/eslint-plugin/README.md

+40-40
Large diffs are not rendered by default.

‎packages/eslint-plugin/tests/docs.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ describe('Validating README.md', () => {
157157

158158
it('Recommended column should be correct', () => {
159159
expect(ruleRow[2]).toEqual(
160-
rule.meta.docs?.recommended ? ':heavy_check_mark:' : '',
160+
rule.meta.docs?.recommended ? ':white_check_mark:' : '',
161161
);
162162
});
163163

‎packages/eslint-plugin/tools/generate-rules-lists.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ interface RuleDetails {
1919
type RuleColumn = [
2020
string,
2121
string,
22-
':heavy_check_mark:' | '',
22+
':white_check_mark:' | '',
2323
':wrench:' | '',
2424
':thought_balloon:' | '',
2525
];
2626

2727
const emojiKey = {
28-
recommended: ':heavy_check_mark:',
28+
recommended: ':white_check_mark:',
2929
fixable: ':wrench:',
3030
requiresTypeChecking: ':thought_balloon:',
3131
} as const;

0 commit comments

Comments
 (0)
Please sign in to comment.