Declare Variables in Separate Statements (DVSS)

Description:

You should not declare several variables (attributes and local variables) in the same statement.

Example:

class DVIOSE {
    int attr1;
    int attr2, attr3; 
    void oper () {
        int var1;
        int var2, var3; 
    }
}