Sha256: 1d758387b5c8debac2977add21f3d353e66c4aa853d3fb7ebe458f956bc2aaac

Contents?: true

Size: 1.61 KB

Versions: 2

Compression:

Stored size: 1.61 KB

Contents

require:
  - rubocop-performance
AllCops:
  DisabledByDefault: false
  SuggestExtensions: false
  NewCops: enable
  Exclude:
    - 'db/schema.rb'
Style/MixinUsage:
  Exclude:
    - 'bin/*'
Style/FetchEnvVar:
  Enabled: false
Style/RedundantConstantBase:
  Enabled: false
Style/HashSyntax:
  Enabled: true
  EnforcedShorthandSyntax: never
Style/NumericPredicate:
  EnforcedStyle: comparison
Style/ZeroLengthPredicate:
  Enabled: false
Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes
Style/FrozenStringLiteralComment:
  Enabled: true
  EnforcedStyle: never
Style/Documentation:
  Enabled: false
Layout/LineLength:
  Max: 100
  Exclude:
    - 'db/seeds.rb'
Metrics/BlockLength:
  Exclude:
    - db/seeds.rb
    - app/admin/**/*.rb
    - spec/**/*_spec.rb
    - config/routes.rb
    - config/deploy.rb
    - app/admin/**/*.rb
    - lib/tasks/**/*.rake
Metrics/AbcSize:
  Exclude:
    - db/migrate/*.rb
  Max: 25
Metrics/CyclomaticComplexity:
  Max: 15
Metrics/ParameterLists:
  Max: 6
Lint/RaiseException:
  Enabled: true
Lint/StructNewOverride:
  Enabled: true
Style/HashEachMethods:
  Enabled: true
Style/HashTransformKeys:
  Enabled: true
Style/HashTransformValues:
  Enabled: true
Style/MultilineBlockChain:
  Enabled: false
Style/NegatedIf:
  EnforcedStyle: postfix
Layout/DotPosition:
  EnforcedStyle: trailing
  Enabled: true
Metrics/MethodLength:
  Max: 20
  Exclude:
    - 'db/**/*.rb'
Style/DoubleNegation:
  Enabled: false
Style/WordArray:
  EnforcedStyle: brackets
Style/SymbolArray:
  EnforcedStyle: brackets
Style/CommentedKeyword:
  Enabled: false
Naming/PredicateName:
  Exclude:
    - 'app/serializers/**/*.rb'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-ipepe-0.2.5 config/rails.default.yml
rubocop-ipepe-0.2.0 config/rails.default.yml