Sha256: cacc1a64cbddce424f7ae689d07baec88dc7c445e811c9f0caaea0aa6dcca56f
Contents?: true
Size: 1.34 KB
Versions: 11
Compression:
Stored size: 1.34 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/**/.*' - 'node_modules/**/*' - 'coverage/**/*' - 'db/**/*' - 'db/schema.rb' - 'db/seeds.rb' - 'client/node_modules/**/*.*' - 'client/node_modules/**/.*' - 'bin/**/*' - !ruby/regexp /old_and_unused\.rb$/ - 'spec/react_on_rails/dummy-for-generators/**/*' - 'spec/dummy/bin/**/*' - 'spec/dummy/client/node_modules/**/*' - 'spec/dummy/client/node_modules/**/.*' - 'gen-examples/examples/**/.*' - 'gen-examples/examples/**/*' Metrics/LineLength: Max: 120 Style/StringLiterals: EnforcedStyle: double_quotes Style/Documentation: Enabled: false Lint/AssignmentInCondition: Exclude: - 'spec/dummy/bin/spring' Lint/HandleExceptions: Exclude: - 'spec/dummy/bin/rails' - 'spec/dummy/bin/rake' Metrics/AbcSize: Max: 26 Metrics/CyclomaticComplexity: Max: 7 Metrics/PerceivedComplexity: Max: 10 Metrics/ClassLength: Max: 114 Metrics/ParameterLists: Max: 5 CountKeywordArgs: false Metrics/MethodLength: Max: 41 Metrics/ModuleLength: Max: 180 Style/GlobalVars: Exclude: - 'spec/dummy/config/environments/development.rb'
Version data entries
11 entries across 11 versions & 1 rubygems