Skip to content

Commit c9c056c

Browse files
authoredJan 22, 2025··
Deprecate no-instanceof-array (#2534)
1 parent 8197574 commit c9c056c

10 files changed

+7
-577
lines changed
 

‎docs/deprecated-rules.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ This rule was renamed to [`no-instanceof-array`](rules/no-instanceof-array.md) t
1212

1313
This rule was renamed to [`no-array-callback-reference`](rules/no-array-callback-reference.md) to avoid using the abbreviation `fn` in the name.
1414

15+
## no-instanceof-array
16+
17+
Replaced by [`no-instanceof-builtin-object`](rules/no-instanceof-builtin-object) which covers more cases.
18+
1519
## no-reduce
1620

1721
This rule was renamed to [`no-array-reduce`](rules/no-array-reduce.md) to be more specific.

‎docs/rules/no-instanceof-array.md

-24
This file was deleted.

‎index.js

+1-17
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,7 @@ import packageJson from './package.json' with {type: 'json'};
55

66
const deprecatedRules = createDeprecatedRules({
77
// {ruleId: ReplacementRuleId | ReplacementRuleId[]}, if no replacement, use `{ruleId: []}`
8-
'import-index': [],
9-
'no-array-instanceof': 'unicorn/no-instanceof-array',
10-
'no-fn-reference-in-iterator': 'unicorn/no-array-callback-reference',
11-
'no-reduce': 'unicorn/no-array-reduce',
12-
'no-unsafe-regex': [],
13-
'prefer-dataset': 'unicorn/prefer-dom-node-dataset',
14-
'prefer-event-key': 'unicorn/prefer-keyboard-event-key',
15-
'prefer-exponentiation-operator': 'prefer-exponentiation-operator',
16-
'prefer-flat-map': 'unicorn/prefer-array-flat-map',
17-
'prefer-node-append': 'unicorn/prefer-dom-node-append',
18-
'prefer-node-remove': 'unicorn/prefer-dom-node-remove',
19-
'prefer-object-has-own': 'prefer-object-has-own',
20-
'prefer-replace-all': 'unicorn/prefer-string-replace-all',
21-
'prefer-starts-ends-with': 'unicorn/prefer-string-starts-ends-with',
22-
'prefer-text-content': 'unicorn/prefer-dom-node-text-content',
23-
'prefer-trim-start-end': 'unicorn/prefer-string-trim-start-end',
24-
'regex-shorthand': 'unicorn/better-regex',
8+
'no-instanceof-array': 'unicorn/no-instanceof-builtin-object',
259
});
2610

2711
const externalRules = {

‎readme.md

-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ export default [
8585
| [no-empty-file](docs/rules/no-empty-file.md) | Disallow empty files. || | |
8686
| [no-for-loop](docs/rules/no-for-loop.md) | Do not use a `for` loop that can be replaced with a `for-of` loop. || 🔧 | 💡 |
8787
| [no-hex-escape](docs/rules/no-hex-escape.md) | Enforce the use of Unicode escapes instead of hexadecimal escapes. || 🔧 | |
88-
| [no-instanceof-array](docs/rules/no-instanceof-array.md) | Require `Array.isArray()` instead of `instanceof Array`. || 🔧 | |
8988
| [no-instanceof-builtin-object](docs/rules/no-instanceof-builtin-object.md) | Disallow `instanceof` with built-in objects || 🔧 | |
9089
| [no-invalid-fetch-options](docs/rules/no-invalid-fetch-options.md) | Disallow invalid options in `fetch()` and `new Request()`. || | |
9190
| [no-invalid-remove-event-listener](docs/rules/no-invalid-remove-event-listener.md) | Prevent calling `EventTarget#removeEventListener()` with the result of an expression. || | |

‎rules/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import noDocumentCookie from './no-document-cookie.js';
3030
import noEmptyFile from './no-empty-file.js';
3131
import noForLoop from './no-for-loop.js';
3232
import noHexEscape from './no-hex-escape.js';
33-
import noInstanceofArray from './no-instanceof-array.js';
3433
import noInstanceofBuiltinObject from './no-instanceof-builtin-object.js';
3534
import noInvalidFetchOptions from './no-invalid-fetch-options.js';
3635
import noInvalidRemoveEventListener from './no-invalid-remove-event-listener.js';
@@ -156,7 +155,6 @@ const rules = {
156155
'no-empty-file': createRule(noEmptyFile, 'no-empty-file'),
157156
'no-for-loop': createRule(noForLoop, 'no-for-loop'),
158157
'no-hex-escape': createRule(noHexEscape, 'no-hex-escape'),
159-
'no-instanceof-array': createRule(noInstanceofArray, 'no-instanceof-array'),
160158
'no-instanceof-builtin-object': createRule(noInstanceofBuiltinObject, 'no-instanceof-builtin-object'),
161159
'no-invalid-fetch-options': createRule(noInvalidFetchOptions, 'no-invalid-fetch-options'),
162160
'no-invalid-remove-event-listener': createRule(noInvalidRemoveEventListener, 'no-invalid-remove-event-listener'),

‎rules/no-instanceof-array.js

-67
This file was deleted.

‎test/no-instanceof-array.js

-70
This file was deleted.

‎test/package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ test('Every rule has valid meta.type', t => {
106106

107107
test('Every deprecated rules listed in docs/deprecated-rules.md', async t => {
108108
const content = await fsAsync.readFile('docs/deprecated-rules.md', 'utf8');
109-
const rulesInMarkdown = content.match(/(?<=^## ).*?$/gm);
110-
t.deepEqual(deprecatedRules, rulesInMarkdown);
109+
const rulesInMarkdown = new Set(content.match(/(?<=^## ).*?$/gm));
111110

112111
for (const name of deprecatedRules) {
113112
const rule = eslintPluginUnicorn.rules[name];
114113
t.is(typeof rule.create, 'function', `${name} create is not function`);
115114
t.deepEqual(rule.create(), {}, `${name} create should return empty object`);
116115
t.true(rule.meta.deprecated, `${name} meta.deprecated should be true`);
116+
t.true(rulesInMarkdown.has(name));
117117
}
118118
});
119119

‎test/snapshots/no-instanceof-array.js.md

-394
This file was deleted.
-1.26 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.