class RuboCop::Cop::Style::CommentedKeyword

def offensive?(comment)

def offensive?(comment)
  line = line(comment)
  KEYWORD_REGEXES.any? { |r| r.match?(line) } &&
    ALLOWED_COMMENT_REGEXES.none? { |r| r.match?(line) }
end