~singpolyma/jmp-pay

ref: 6cd9f94dbdea8bbb5a2a0b68e3e0b3998b2f8ed8 jmp-pay/.rubocop.yml -rw-r--r-- 1.6 KiB
6cd9f94dStephen Paul Weber Endpoint that pushes all unknown transactions into Redis 2 years ago
                                                                                
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
Metrics/LineLength:
  Max: 80

Metrics/BlockLength:
  ExcludedMethods:
    - route

Layout/Tab:
  Enabled: false

Layout/IndentationWidth:
  Width: 1 # one tab

Lint/EndAlignment:
  EnforcedStyleAlignWith: variable

Lint/RescueException:
  Enabled: false

Style/AndOr:
  Enabled: false

Layout/AlignParameters:
  Enabled: false

Style/BlockDelimiters:
  Enabled: false

Layout/CaseIndentation:
  EnforcedStyle: end

Style/Documentation:
  Enabled: false

Style/FormatString:
  EnforcedStyle: percent

Layout/LeadingCommentSpace:
  Enabled: false

Layout/MultilineMethodCallBraceLayout:
  Enabled: false

Layout/MultilineOperationIndentation:
  Enabled: false

Style/MultilineTernaryOperator:
  Enabled: false

Style/Next:
  Enabled: false

Style/Not:
  Enabled: false

Style/NumericLiterals:
  MinDigits: 20
  Strict: true

Style/NumericPredicate:
  Enabled: false

Layout/SpaceAroundOperators:
  Enabled: false

Layout/SpaceInsideHashLiteralBraces:
  EnforcedStyle: no_space

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/NegatedIf:
  Enabled: false

Style/RedundantReturn:
  Enabled: false

Style/MultilineBlockChain:
  Enabled: false

Layout/SpaceAroundEqualsInParameterDefault:
  EnforcedStyle: no_space

Layout/IndentArray:
  EnforcedStyle: consistent

Style/SymbolArray:
  EnforcedStyle: brackets

Layout/FirstParameterIndentation:
  EnforcedStyle: consistent

Style/Lambda:
  EnforcedStyle: lambda

Layout/AccessModifierIndentation:
  EnforcedStyle: outdent

Style/FormatStringToken:
  Enabled: false

Style/WordArray:
  EnforcedStyle: brackets

Lint/UriEscapeUnescape:
  Enabled: false

Style/RescueModifier:
  Enabled: false