require: - rubocop-performance - rubocop-rake - rubocop-rspec - rubocop-thread_safety inherit_mode: merge: - Exclude AllCops: DisplayCopNames: true DisplayStyleGuide: true Include: - "Rakefile" - "Gemfile" - "*.gemspec" - 'Rakefile' - 'lib/**/*' - 'bin/**/*' - 'spec/**/*.rb' Exclude: - 'bin/setup' - 'Gemfile.lock' - 'gemfiles/**/*' - '**/*.json' # - '**/*.yml' - 'vendor/bundle/**/*' Layout/LineLength: Enabled: true Max: 125 Metrics/BlockLength: Enabled: true Exclude: - 'spec/**/*.rb' Metrics/MethodLength: CountComments: false Max: 12 Metrics/ParameterLists: Enabled: true Max: 5 CountKeywordArgs: false RSpec/AlignLeftLetBrace: Enabled: true RSpec/ExampleLength: Max: 10