-
Notifications
You must be signed in to change notification settings - Fork 0
/
.ameba.yml
35 lines (29 loc) · 896 Bytes
/
.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
Lint/UselessAssign:
Description: Disallows useless variable assignments
ExcludeTypeDeclarations: false
Enabled: false
Severity: Warning
Lint/NotNil:
Description: Identifies usage of `not_nil!` calls
Enabled: false
Severity: Warning
Naming/BlockParameterName:
Description: Disallows non-descriptive block parameter names
Enabled: false
Severity: Convention
Lint/SpecFilename:
Description: Enforces spec filenames to have `_spec` suffix
Enabled: false
Severity: Warning
Lint/DebugCalls:
Description: Disallows debug-related calls
Enabled: false
Severity: Warning
Lint/MissingBlockArgument:
Description: Disallows yielding method definitions without block argument
Enabled: false
Severity: Warning
Metrics/CyclomaticComplexity:
Description: Disallows methods with a cyclomatic complexity higher than `MaxComplexity`
Enabled: false
Severity: Warning