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: readme.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Configure it in `package.json`.
47
47
"unicorn/no-abusive-eslint-disable": "error",
48
48
"unicorn/no-array-instanceof": "error",
49
49
"unicorn/no-console-spaces": "error",
50
-
"unicorn/no-fn-reference-in-iterator": "off",
50
+
"unicorn/no-fn-reference-in-iterator": "error",
51
51
"unicorn/no-for-loop": "error",
52
52
"unicorn/no-hex-escape": "error",
53
53
"unicorn/no-keyword-prefix": "off",
@@ -105,7 +105,7 @@ Configure it in `package.json`.
105
105
-[no-abusive-eslint-disable](docs/rules/no-abusive-eslint-disable.md) - Enforce specifying rules to disable in `eslint-disable` comments.
106
106
-[no-array-instanceof](docs/rules/no-array-instanceof.md) - Require `Array.isArray()` instead of `instanceof Array`. *(fixable)*
107
107
-[no-console-spaces](docs/rules/no-console-spaces.md) - Do not use leading/trailing space between `console.log` parameters. *(fixable)*
108
-
-[no-fn-reference-in-iterator](docs/rules/no-fn-reference-in-iterator.md) - Prevent passing a function reference directly to iterator methods.*(fixable)*
108
+
-[no-fn-reference-in-iterator](docs/rules/no-fn-reference-in-iterator.md) - Prevent passing a function reference directly to iterator methods.
109
109
-[no-for-loop](docs/rules/no-for-loop.md) - Do not use a `for` loop that can be replaced with a `for-of` loop. *(partly fixable)*
110
110
-[no-hex-escape](docs/rules/no-hex-escape.md) - Enforce the use of Unicode escapes instead of hexadecimal escapes. *(fixable)*
111
111
-[no-keyword-prefix](docs/rules/no-keyword-prefix.md) - Disallow identifiers starting with `new` or `class`.
0 commit comments