You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rules/consistent-destructuring.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
🚫 This rule is _disabled_ in the ✅ `recommended`[config](https://github.com/sindresorhus/eslint-plugin-unicorn#recommended-config).
4
4
5
-
🔧💡 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
5
+
💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
6
6
7
7
<!-- end auto-generated rule header -->
8
8
<!-- Do not manually modify this header. Run: `npm run fix:eslint-docs` -->
Copy file name to clipboardExpand all lines: docs/rules/prefer-default-parameters.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
💼 This rule is enabled in the ✅ `recommended`[config](https://github.com/sindresorhus/eslint-plugin-unicorn#recommended-config).
4
4
5
-
🔧💡 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
5
+
💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
6
6
7
7
<!-- end auto-generated rule header -->
8
8
<!-- Do not manually modify this header. Run: `npm run fix:eslint-docs` -->
|[consistent-date-clone](docs/rules/consistent-date-clone.md)| Prefer passing `Date` directly to the constructor when cloning. | ✅ | 🔧 ||
63
-
|[consistent-destructuring](docs/rules/consistent-destructuring.md)| Use destructured variables over properties. ||🔧| 💡 |
63
+
|[consistent-destructuring](docs/rules/consistent-destructuring.md)| Use destructured variables over properties. ||| 💡 |
64
64
|[consistent-empty-array-spread](docs/rules/consistent-empty-array-spread.md)| Prefer consistent types when spreading a ternary in an array literal. | ✅ | 🔧 ||
65
65
|[consistent-existence-index-check](docs/rules/consistent-existence-index-check.md)| Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`. | ✅ | 🔧 ||
66
66
|[consistent-function-scoping](docs/rules/consistent-function-scoping.md)| Move function definitions to the highest possible scope. | ✅ |||
@@ -134,7 +134,7 @@ export default [
134
134
|[prefer-blob-reading-methods](docs/rules/prefer-blob-reading-methods.md)| Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`. | ✅ |||
135
135
|[prefer-code-point](docs/rules/prefer-code-point.md)| Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`. | ✅ || 💡 |
136
136
|[prefer-date-now](docs/rules/prefer-date-now.md)| Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch. | ✅ | 🔧 ||
0 commit comments