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
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ Copying these rules into your `rules` object will achieve the same effect as usi
81
81
- ✅ = Yes / Enabled
82
82
- ✖️ = No / Disabled
83
83
- 💡 = Has suggestions (requires user confirmation for fixes)
84
+
- 🔶 = Optionally uses types (works without TypeScript but more powerful with it)
84
85
85
86
### Modernization
86
87
@@ -114,11 +115,6 @@ Copying these rules into your `rules` object will achieve the same effect as usi
114
115
|[prefer-date-now](./src/rules/prefer-date-now.ts)| Prefer `Date.now()` over `new Date().getTime()` and `+new Date()`| ✅ | ✅ | ✖️ |
115
116
|[prefer-regex-test](./src/rules/prefer-regex-test.ts)| Prefer `RegExp.test()` over `String.match()` and `RegExp.exec()` when only checking for match existence | ✅ | ✅ | 🔶 |
116
117
117
-
**Legend for "Requires Types" column:**
118
-
- ✖️ = Does not require types
119
-
- ✅ = Requires types
120
-
- 🔶 = Optionally uses types (works without TypeScript but more powerful with it)
0 commit comments