Skip to content

Commit bd7da4e

Browse files
committed
chore: change rules to suggestions
1 parent 2ac36fb commit bd7da4e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/rules/eqeqeq.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ type Options = [];
66

77
export const eqeqeq = createRule<MessageIds, Options>({
88
meta: {
9-
type: 'layout',
9+
type: 'suggestion',
1010
fixable: 'code',
1111
docs: {
1212
description: 'Require the use of `===` and `!==`',

src/rules/no-array-keyword.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ type Options = [];
55

66
export const noArrayKeyword = createRule<MessageIds, Options>({
77
meta: {
8-
type: 'layout',
8+
type: 'suggestion',
99
fixable: 'code',
1010
docs: {
1111
description: 'disallow the use of the array keyword',

0 commit comments

Comments
 (0)