sbdchd / eslint-plugin-cake

:cake: Sweet rules for ESLint
MIT License
1 stars 0 forks source link

prefer-safe-navigation #21

Open sbdchd opened 3 years ago

sbdchd commented 3 years ago
// error
if (foo) {
  foo.cancel()
}
// error
if (foo) {
  foo()
}

// ok
foo?.cancel()
foo?.()