Skip to content

Commit 7298f69

Browse files
committed
feat!: enable no-meta-replaced-by, no-meta-schema-default, require-meta-default-options, require-meta-schema-description as recommended rules
1 parent b2994c7 commit 7298f69

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/rules/no-meta-replaced-by.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const rule = {
1515
docs: {
1616
description: 'disallow using the `meta.replacedBy` rule property',
1717
category: 'Rules',
18-
recommended: false,
18+
recommended: true,
1919
url: 'https://github.com/eslint-community/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/no-meta-replaced-by.md',
2020
},
2121
schema: [],

lib/rules/no-meta-schema-default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const rule = {
1313
description:
1414
'disallow rules `meta.schema` properties to include defaults',
1515
category: 'Rules',
16-
recommended: false,
16+
recommended: true,
1717
url: 'https://github.com/eslint-community/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/no-meta-schema-default.md',
1818
},
1919
schema: [],

lib/rules/require-meta-default-options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const rule = {
88
description:
99
'require only rules with options to implement a `meta.defaultOptions` property',
1010
category: 'Rules',
11-
recommended: false,
11+
recommended: true,
1212
url: 'https://github.com/eslint-community/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/require-meta-default-options.md',
1313
},
1414
fixable: 'code',

lib/rules/require-meta-schema-description.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const rule = {
1313
description:
1414
'require rules `meta.schema` properties to include descriptions',
1515
category: 'Rules',
16-
recommended: false,
16+
recommended: true,
1717
url: 'https://github.com/eslint-community/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/require-meta-schema-description.md',
1818
},
1919
schema: [],

0 commit comments

Comments
 (0)