Sha256: ca686cc28716f09b7fd4228b11e4d60bc8443156357504638de74fb6c16ccda2
Contents?: true
Size: 870 Bytes
Versions: 7
Compression:
Stored size: 870 Bytes
Contents
# The behavior of RuboCop can be controlled via the .rubocop.yml # configuration file. It makes it possible to enable/disable # certain cops (checks) and to alter their behavior if they accept # any parameters. The file can be placed either in your home # directory or in some project directory. # # RuboCop will start looking for the configuration file in the directory # where the inspected file is and continue its way up to the root directory. # # See https://docs.rubocop.org/rubocop/configuration require: - rubocop-rspec AllCops: TargetRubyVersion: 2.7 NewCops: enable Layout/LineLength: Enabled: false Metrics/BlockLength: Enabled: false Metrics/ClassLength: Enabled: false Metrics/MethodLength: Enabled: false Naming/AccessorMethodName: Enabled: false RSpec/MultipleMemoizedHelpers: Enabled: false RSpec/ExampleLength: Enabled: false
Version data entries
7 entries across 7 versions & 1 rubygems