summaryrefslogtreecommitdiff
path: root/.rubocop.yml
blob: c86553e5b7c6579add77091ecb9cb80dfef39090 (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
75
76
77
78
79
80
81
82
83
84
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'

# TODO: delete exclusions when we drop Ruby 1.9.3 support.
Style/ExpandPathArguments:
  Exclude:
    - 'lib/pry/commands.rb'
    - 'pry.gemspec'

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

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

Style/StringLiterals:
  Enabled: false

# TODO: delete this rule when we drop Ruby 1.9.3 support.
Style/SymbolArray:
  EnforcedStyle: brackets

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'