Sha256: 26720ea9c4694d220b693b32abf01c3e7197ac5cd493fd9dc3122b08985ffd88

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

inherit_from: .rubocop_todo.yml

AllCops:
  Exclude:
    - 'db/**/*'
    - 'spec/dummy/**/*'
    - 'bin/{rails,rake}'
    - 'vendor/**/*'
    - !ruby/regexp /old_and_unused\.rb$/
    - 'lib/delorean/delorean.rb' # Auto-generated

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: single_quotes

Metrics/LineLength:
  Max: 80
  Exclude:
    - 'spec/func_spec.rb'
    - 'spec/parse_spec.rb'

Metrics/ModuleLength:
  Max: 100
  Exclude:
    - 'spec/**/*'

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*'

Style/TrailingCommaInArguments:
  Enabled: false

Style/TrailingCommaInArrayLiteral:
  Enabled: false

Style/TrailingCommaInHashLiteral:
  Enabled: false

Style/FrozenStringLiteralComment:
  EnforcedStyle: always

Layout/IndentHeredoc:
  Exclude:
    - 'spec/eval_spec.rb'

Style/Documentation:
  Enabled: false

Lint/UnusedMethodArgument:
  AllowUnusedKeywordArguments: true

Naming/VariableNumber:
  Enabled: false

Style/WordArray:
  Exclude:
    - 'spec/**/*'

Layout/MultilineArrayBraceLayout:
  Exclude:
    - 'spec/**/*'

Layout/MultilineMethodCallBraceLayout:
  Exclude:
    - 'spec/**/*'

Naming/BinaryOperatorParameterName:
  Exclude:
    - 'lib/delorean/base.rb'

Style/PerlBackrefs:
  Enabled: false

Naming/HeredocDelimiterCase:
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
delorean_lang-0.5.3 .rubocop.yml
delorean_lang-0.5.2 .rubocop.yml