.rubocop.yml

  1Metrics/LineLength:
  2  Max: 80
  3
  4Layout/Tab:
  5  Enabled: false
  6
  7Layout/IndentationWidth:
  8  Width: 1 # one tab
  9
 10Lint/EndAlignment:
 11  EnforcedStyleAlignWith: variable
 12
 13Lint/RescueException:
 14  Enabled: false
 15
 16Style/AndOr:
 17  Enabled: false
 18
 19Layout/AlignParameters:
 20  Enabled: false
 21
 22Style/BlockDelimiters:
 23  Enabled: false
 24
 25Layout/CaseIndentation:
 26  EnforcedStyle: end
 27
 28Style/Documentation:
 29  Enabled: false
 30
 31Style/FormatString:
 32  EnforcedStyle: percent
 33
 34Layout/LeadingCommentSpace:
 35  Enabled: false
 36
 37Layout/MultilineMethodCallBraceLayout:
 38  Enabled: false
 39
 40Layout/MultilineOperationIndentation:
 41  Enabled: false
 42
 43Style/MultilineTernaryOperator:
 44  Enabled: false
 45
 46Style/Next:
 47  Enabled: false
 48
 49Style/Not:
 50  Enabled: false
 51
 52Style/NumericLiterals:
 53  MinDigits: 20
 54  Strict: true
 55
 56Style/NumericPredicate:
 57  Enabled: false
 58
 59Layout/SpaceAroundOperators:
 60  Enabled: false
 61
 62Layout/SpaceInsideHashLiteralBraces:
 63  EnforcedStyle: no_space
 64
 65Style/StringLiterals:
 66  EnforcedStyle: double_quotes
 67
 68Style/NegatedIf:
 69  Enabled: false
 70
 71Style/RedundantReturn:
 72  Enabled: false
 73
 74Style/MultilineBlockChain:
 75  Enabled: false
 76
 77Layout/SpaceAroundEqualsInParameterDefault:
 78  EnforcedStyle: no_space
 79
 80Layout/IndentArray:
 81  EnforcedStyle: consistent
 82
 83Style/SymbolArray:
 84  EnforcedStyle: brackets
 85
 86Layout/FirstParameterIndentation:
 87  EnforcedStyle: consistent
 88
 89Style/Lambda:
 90  EnforcedStyle: lambda
 91
 92Layout/AccessModifierIndentation:
 93  EnforcedStyle: outdent
 94
 95Style/FormatStringToken:
 96  Enabled: false
 97
 98Style/WordArray:
 99  EnforcedStyle: brackets
100
101Lint/UriEscapeUnescape:
102  Enabled: false
103
104Style/RescueModifier:
105  Enabled: false