summaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: e015d7c5ac1b24323a56b6c1c541f5f7df52c54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
inherit_from: .rubocop_todo.yml

# Prevents Ruby 3.1 incompatibility error. You can enable this cop when Ruby 2.4 support is dropped.
# See https://github.com/rubocop/rubocop/issues/10258
Layout/BlockAlignment:
  Enabled: false

Style/NumericPredicate:
  Enabled: false

Layout/IndentHeredoc:
  Enabled: false

Naming/MethodName:
  Exclude:
    - 'spec/code_object_spec.rb'
    - 'lib/pry/method.rb'
    - 'lib/pry/wrapped_module.rb'
    - 'lib/pry/code.rb'

Metrics/ModuleLength:
  Exclude:
    - 'lib/pry/config/behavior.rb'

Layout/CommentIndentation:
  Exclude:
    - 'spec/fixtures/example_nesting.rb'

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Style/ClassAndModuleChildren:
  Exclude:
    - 'spec/fixtures/example_nesting.rb'

Style/Semicolon:
  Exclude:
    - 'spec/method_spec.rb'

Style/SingleLineMethods:
  Exclude:
    - 'spec/method_spec.rb'
    - 'spec/fixtures/example_nesting.rb'

Style/StringLiterals:
  Enabled: false

Metrics/LineLength:
  Max: 90

Bundler/OrderedGems:
  Enabled: false

Style/DoubleNegation:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/CommentedKeyword:
  Exclude:
    - 'spec/fixtures/example_nesting.rb'

Gemspec/RequiredRubyVersion:
  Enabled: false

Style/ModuleFunction:
  Enabled: false

Style/FrozenStringLiteralComment:
  Enabled: true
  EnforcedStyle: always
  Exclude:
    - 'spec/fixtures/example_nesting.rb'