React-Style-Guide

A Reactjs coding style guide

This project is maintained by LinuxDevil

Avoid negative conditionals

Bad:

function isEmailNotUsed(email: string): boolean {
  // ...
}

if (isEmailNotUsed(email)) {
  // ...
}

Good:

function isEmailUsed(email: string): boolean {
  // ...
}

if (!isEmailUsed(email)) {
  // ...
}