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
"deprecate/member-expression": ["error",
{"name": "history.go", "use": "newFunc from this package"}
]
// Normal case, Expected
history.go(); // ERROR
// Case 1, Not expected
window.history.go(); // PASSED
// Case 2, Not expected
const history = {};
history.go(); // ERROR
// Case 3, Not expected
const h = history;
h.go(); // PASSED
Case 3 is complicated for Lint, but Case 1 and 2 are so fragile, Is there any idea to solve this ?
The text was updated successfully, but these errors were encountered:
Case 3 is complicated for Lint, but Case 1 and 2 are so fragile, Is there any idea to solve this ?
The text was updated successfully, but these errors were encountered: