Sha256: 955cc3df564e96836c9cdb8b9e88cc7b0cfc78f13f376be258aae44a648e72a7

Contents?: true

Size: 826 Bytes

Versions: 1

Compression:

Stored size: 826 Bytes

Contents

inherit_from: .rubocop_todo.yml

require:
  - rubocop-rake
  - rubocop-rspec

AllCops:
  NewCops: enable
  TargetRubyVersion: 3.0


# 日本語のコメントを OK とする
Style/AsciiComments:
  Enabled: false

# 一行に 120 文字まで書いても OK とする
#Metrics/LineLength:
#  Max: 120
Layout/LineLength:
  Max: 120

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

# frozen_string_literal: trueが付かないようにする
Style/FrozenStringLiteralComment:
  Enabled: false

Naming/VariableNumber:
  EnforcedStyle: 'snake_case'

Style/Documentation:
  Enabled: true

#  Department:
#    Enabled: false # 無効にする
#    # Severity: warning # 警告レベルを下げる (デフォルトはerror)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
clitest-0.1.10 .rubocop.yml