Codebase list ruby-tty-screen / c22bae3b-6838-4564-8c0f-85c5dc26e2ea/upstream/0.8.1+git20220812.1.e5a234c .rubocop.yml
c22bae3b-6838-4564-8c0f-85c5dc26e2ea/upstream/0.8.1+git20220812.1.e5a234c

Tree @c22bae3b-6838-4564-8c0f-85c5dc26e2ea/upstream/0.8.1+git20220812.1.e5a234c (Download .tar.gz)

.rubocop.yml @c22bae3b-6838-4564-8c0f-85c5dc26e2ea/upstream/0.8.1+git20220812.1.e5a234craw · history · blame

AllCops:
  NewCops: enable

Layout/LineLength:
  Max: 80

Lint/AssignmentInCondition:
  Enabled: false

Metrics/AbcSize:
  Max: 30

Metrics/BlockLength:
  CountComments: true
  Max: 25
  IgnoredMethods: []
  Exclude:
    - "spec/**/*"

Metrics/ClassLength:
  Max: 1500

Metrics/CyclomaticComplexity:
  Enabled: false

Metrics/MethodLength:
  Max: 20

Naming/BinaryOperatorParameterName:
  Enabled: false

Style/AsciiComments:
  Enabled: false

Style/LambdaCall:
  SupportedStyles:
  - call
  - braces

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/TrivialAccessors:
  Enabled: false

# { ... } for multi-line blocks is okay
Style/BlockDelimiters:
  Enabled: false

Style/CommentedKeyword:
  Enabled: false