diff options
author | Azul <azul@riseup.net> | 2016-05-25 12:59:29 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2016-05-25 12:59:57 +0200 |
commit | 80e8ce856c8b9305327db1038f356b2b62da10bb (patch) | |
tree | 2bd4f0643270c633c3b58d7e5bfd622146f45a33 | |
parent | 62e27158a4fda768377df17430d154c2aae03f5d (diff) |
rubocop: disable EndAlignment cop permanently
we use
end; end
to end nested modules.
-rw-r--r-- | .rubocop.yml | 4 | ||||
-rw-r--r-- | .rubocop_todo.yml | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 503bc17..652bfba 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -8,3 +8,7 @@ Style/HashSyntax: Lint/DeprecatedClassMethods: Enabled: true + +# complains about our nested module end; end style +Lint/EndAlignment: + Enabled: false diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 6f7fb89..533d31d 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -18,13 +18,6 @@ Lint/AssignmentInCondition: - 'Rakefile' - 'lib/nickserver/daemon.rb' -# Offense count: 11 -# Cop supports --auto-correct. -# Configuration parameters: AlignWith, SupportedStyles, AutoCorrect. -# SupportedStyles: keyword, variable, start_of_line -Lint/EndAlignment: - Enabled: false - # Offense count: 1 Lint/Eval: Exclude: |