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
feat(eslint): Allow short circuit expressions (#4697)
This changes the default `eslint` config in order to allow expressions of the form `someBoolean && doStuff()` or `someBoolean && (someVariable = someValue)` (which are just alternate, slightly shorter forms of single-line `if` blocks), in order to be able to use them when checking whether or not to emit logs.
0 commit comments