Sha256: 920bd6f3d53097bc94f36d73aa64e859dd2071f9de3effa43b730da69d551880
Contents?: true
Size: 1.17 KB
Versions: 6
Compression:
Stored size: 1.17 KB
Contents
# This is the configuration used to check the rubocop source code. # Check out: https://github.com/bbatsov/rubocop AllCops: Include: - '**/Rakefile' - '**/config.ru' Exclude: - 'vendor/**/*' - 'spec/fixtures/**/*' - 'node_modules/**/*' - 'db/**/*' - 'db/schema.rb' - 'db/seeds.rb' - 'client/node_modules/**/*' - 'bin/**/*' - !ruby/regexp /old_and_unused\.rb$/ Metrics/LineLength: Max: 120 Style/StringLiterals: EnforcedStyle: double_quotes Style/Documentation: Enabled: false Lint/AssignmentInCondition: Exclude: - 'spec/dummy/bin/spring' # Offense count: 2 Lint/HandleExceptions: Exclude: - 'spec/dummy/bin/rails' - 'spec/dummy/bin/rake' # Offense count: 1 Metrics/AbcSize: Max: 18 # Offense count: 1 # Configuration parameters: CountComments. Metrics/ClassLength: Max: 114 # Offense count: 9 # Configuration parameters: CountComments. Metrics/MethodLength: Max: 38 # Offense count: 1 # Configuration parameters: CountComments. Metrics/ModuleLength: Max: 119 # Offense count: 3 # Configuration parameters: AllowedVariables. Style/GlobalVars: Exclude: - 'spec/dummy/config/environments/development.rb'
Version data entries
6 entries across 6 versions & 1 rubygems