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
require-await: we usually don't want to have an async function that does not await
Sadly, we cannot catch with eslint where we call an async function and we don't await, I'd really like that, too.
(updated) no-unused-vars: we usually don't want unused parameters (semistandard doesn't seem to catch that)
(updated) no-restricted-syntax SequenceExpression: we don't usually use the comma operator and sequence expressions; inexperienced programmers coming from other languages can use it by mistake, thinking it does something else