Sha256: 680434dd37cfcf85decfe9a681c4f70f528682e0713dfa1699a251a6bd4c139a

Contents?: true

Size: 1.38 KB

Versions: 5

Compression:

Stored size: 1.38 KB

Contents

# See documentation for details on definitions:
# https://rubocop.readthedocs.io

inherit_mode:
  merge:
    - AllowedNames
    - Exclude

require:
  - standard
  - standard-custom
  - rubocop-performance
  - rubocop-vendor

inherit_gem:
  standard: config/base.yml
  standard-performance: config/base.yml
  standard-custom: config/base.yml

AllCops:
  NewCops: disable
  DisabledByDefault: true
  SuggestExtensions: false
  TargetRubyVersion: 3.2
  Exclude:
    - "bin/**/*"
    - "data/**/*"
    - "db/data/**/*"
    - "db/*migrate/**/*"
    - "db/schema.rb"
    - "gemfiles/**/*"
    - "log/**/*"
    - "node_modules/**/*"
    - "public/**/*"
    - "tmp/**/*"
    - "vendor/**/*"

# standardrb overrides
Layout/DotPosition:
  EnforcedStyle: trailing

Layout/SpaceInsideHashLiteralBraces:
  EnforcedStyle: space

Layout/EmptyLineBetweenDefs:
  AllowAdjacentOneLineDefs: true

Style/EmptyMethod:
  Enabled: false

Style/SingleLineMethods:
  Enabled: false

Style/StringLiterals:
  Enabled: false

Style/StringLiteralsInInterpolation:
  Enabled: false

Style/BlockDelimiters:
  EnforcedStyle: semantic

Style/RescueStandardError:
  EnforcedStyle: explicit

Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInArguments:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: comma

# enable rubocop-vendor
Vendor:
  Enabled: true

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ws-style-7.6.1 core.yml
ws-style-7.6.0 core.yml
ws-style-7.5.1 core.yml
ws-style-7.5.0 core.yml
ws-style-7.4.4 core.yml