diff options
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index d348e7d..8d0274b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -12,6 +12,15 @@ inherit_from: .rubocop_todo.yml Layout/IndentHeredoc: Enabled: false +Metrics/BlockLength: + Exclude: + - 'spec/**/*.rb' + +Metrics/LineLength: + Exclude: + - 'Guardfile' + Max: 110 + Naming/FileName: Exclude: - 'Dangerfile' |