Pandora FMS coding standard
./src
*/*.old
*/*.bak
*/src/public/css/*
*/src/public/js/*
*/src/public/fonts/*
Implicit true comparisons discouraged. Try to check the return type with the === operator instead.
warning
The === comparision operator is preferred. Check if the == operator is really needed here. The === operator, unlike the == operator, compares also the type of the variables, so things like 0 === false would be false.
warning
warning
warning