-
Notifications
You must be signed in to change notification settings - Fork 0
/
.ameba.yml
120 lines (82 loc) · 1.65 KB
/
.ameba.yml
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
110
111
112
113
114
115
116
117
118
119
120
Globs:
- spec/**/*.cr
- src/**/*.cr
Layout/LineLength:
Enabled: true
MaxLength: 120
Layout/TrailingBlankLines:
Enabled: true
Layout/TrailingWhitespace:
Enabled: true
Lint/ComparisonToBoolean:
Enabled: false
Lint/DebuggerStatement:
Enabled: true
Lint/EmptyEnsure:
Enabled: true
Lint/EmptyExpression:
Enabled: true
Lint/HashDuplicatedKey:
Enabled: true
Lint/LiteralInCondition:
Enabled: true
Lint/LiteralInInterpolation:
Enabled: true
Lint/PercentArrays:
Enabled: true
StringArrayUnwantedSymbols: ',"'
SymbolArrayUnwantedSymbols: ',:'
Lint/RandZero:
Enabled: true
Lint/RedundantWithIndex:
Enabled: true
Lint/RedundantWithObject:
Enabled: true
Lint/ShadowedArgument:
Enabled: true
Lint/ShadowedException:
Enabled: true
Lint/ShadowingOuterLocalVar:
Enabled: true
Lint/UnreachableCode:
Enabled: true
Lint/UnusedArgument:
Enabled: true
Lint/UselessConditionInWhen:
Enabled: true
Metrics/CyclomaticComplexity:
Enabled: false
Naming/BlockParameterName:
Enabled: false
Performance/AnyAfterFilter:
Enabled: true
Performance/AnyInsteadOfEmpty:
Enabled: false
Performance/FirstLastAfterFilter:
Enabled: true
Performance/SizeAfterFilter:
Enabled: true
Style/ConstantNames:
Enabled: true
Style/LargeNumbers:
Enabled: true
Style/MethodNames:
Enabled: true
Style/NegatedConditionsInUnless:
Enabled: false
Style/PredicateName:
Enabled: true
Style/RedundantBegin:
Enabled: true
Style/RedundantReturn:
Enabled: true
Style/VerboseBlock:
Enabled: false
Style/TypeNames:
Enabled: true
Style/UnlessElse:
Enabled: true
Style/VariableNames:
Enabled: true
Style/WhileTrue:
Enabled: true