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/src/rules/no-unsafe-optional-chaining.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ rule_type: problem
8
8
The optional chaining (`?.`) expression can short-circuit with a return value of `undefined`. Therefore, treating an evaluated optional chaining expression as a function, object, number, etc., can cause TypeError or unexpected results. For example:
Copy file name to clipboardexpand all lines: docs/src/rules/no-useless-backreference.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,13 @@ In JavaScript regular expressions, it's syntactically valid to define a backrefe
16
16
Backreferences that always successfully match zero-length and cannot match anything else are useless. They are basically ignored and can be removed without changing the behavior of the regular expression.
0 commit comments