diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index e69de29..bb1d59c 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -0,0 +1,44 @@ +# This configuration was generated by +# `rubocop --auto-gen-config` +# on 2020-11-18 11:06:43 +0000 using RuboCop version 0.49.1. +# The point is for the user to remove these configuration records +# one by one as the offenses are removed from the code base. +# Note that changes in the inspected code, or installation of new +# versions of RuboCop, may require this file to be generated again. + +# Offense count: 55 +Lint/UnderscorePrefixedVariableName: + Enabled: false + +# Offense count: 38 +Lint/UselessAssignment: + Exclude: + - 'spec/classes/networks_spec.rb' + - 'spec/defines/run_spec.rb' + - 'spec/helper/get_defaults.rb' + - 'spec/shared_examples/compose.rb' + - 'spec/shared_examples/image.rb' + - 'spec/shared_examples/machine.rb' + - 'spec/shared_examples/run.rb' + - 'spec/shared_examples/service.rb' + - 'spec/shared_examples/services.rb' + +# Offense count: 6 +# Configuration parameters: CountBlocks. +Metrics/BlockNesting: + Max: 7 + +# Offense count: 5 +Style/IdenticalConditionalBranches: + Exclude: + - 'spec/helper/get_defaults.rb' + - 'spec/helper/get_values_init.rb' + +# Offense count: 6 +Style/IfInsideElse: + Exclude: + - 'lib/puppet/parser/functions/docker_service_flags.rb' + - 'spec/helper/get_docker_service_flags.rb' + - 'spec/shared_examples/image.rb' + - 'spec/shared_examples/install.rb' + - 'spec/shared_examples/service.rb'