Sha256: c80f12c35c1abd70329bc30c80438c8afe8faf26e748e024101f55ed5a5782cf

Contents?: true

Size: 1.69 KB

Versions: 2

Compression:

Stored size: 1.69 KB

Contents

require: ezcater_rubocop

AllCops:
  DisplayCopNames: true

Layout/DotPosition:
  EnforcedStyle: trailing

Metrics/AbcSize:
  Enabled: false

Metrics/BlockLength:
  Exclude:
  - "*.gemspec"
  - "spec/**/*.rb"
  - "lib/tasks/**/*.rake"
  - "config/environments/*.rb"

Metrics/CyclomaticComplexity:
  Enabled: false

Metrics/LineLength:
  Max: 120
  Exclude:
  - "Gemfile"

Metrics/MethodLength:
  Enabled: true
  CountComments: false
  Max: 25

Metrics/PerceivedComplexity:
  Enabled: false

Rails:
  Enabled: false

RSpec/ContextWording:
  Enabled: false

RSpec/DescribeClass:
  Exclude:
  - "spec/requests/**/*.rb"
  - "spec/features/**/*.rb"
  - "spec/routing/**/*.rb"
  - "spec/views/**/*.rb"
  - "spec/system/**/*.rb"
  - "spec/integrations/**/*.rb"

RSpec/ExampleLength:
  Max: 25

RSpec/LetSetup:
  Enabled: false

RSpec/MultipleExpectations:
  Max: 5

RSpec/NestedGroups:
  Max: 5

Style/EmptyLiteral:
  Enabled: false

Style/FrozenStringLiteralComment:
  Enabled: true
  EnforcedStyle: when_needed

Style/GuardClause:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/IfUnlessModifier:
  Enabled: false

# This cop does not yet support a style to prevent underscores
Style/NumericLiterals:
  Enabled: false

Style/PercentLiteralDelimiters:
  PreferredDelimiters:
    default: '()'
    '%i': '()'
    '%I': '()'
    '%r': '{}'
    '%w': '()'
    '%W': '()'

Style/RaiseArgs:
  EnforcedStyle: compact

Style/RegexpLiteral:
  Enabled: true
  EnforcedStyle: slashes
  AllowInnerSlashes: true

Style/SingleLineBlockParams:
  Enabled: false

Style/StderrPuts:
  Exclude:
    - "bin/yarn"

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/TrailingCommaInLiteral:
  EnforcedStyleForMultiline: consistent_comma

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ezcater_rubocop-0.52.8 conf/rubocop.yml
ezcater_rubocop-0.52.7 conf/rubocop.yml