class RuboCop::Cop::Style::Not

Checks for uses of the keyword ‘not` instead of `!`.

@example

# bad - parentheses are required because of op precedence
x = (not something)

# good
x = !something