forked from hanami/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
46 lines (46 loc) · 1.04 KB
/
.rubocop.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
# Please keep AllCops, Bundler, Style, Metrics groups and then order cops
# alphabetically
AllCops:
SuggestExtensions: false
inherit_from:
- https://raw.githubusercontent.com/hanami/devtools/main/.rubocop.yml
Layout/LineLength:
Exclude:
- Gemfile
- 'spec/**/*.rb'
Lint/DuplicateBranch:
Enabled: false
Lint/EmptyFile:
Exclude:
- 'spec/fixtures/**/*.rb'
Lint/NonLocalExitFromIterator:
Enabled: false
Naming/HeredocDelimiterNaming:
Enabled: false
Naming/MethodParameterName:
AllowedNames:
- fs
Naming/RescuedExceptionsVariableName:
Enabled: false
Style/AccessorGrouping:
Enabled: false
Style/BlockDelimiters:
Enabled: false
Style/CommentedKeyword:
Enabled: false
Style/EmptyHeredoc:
Enabled: false
Style/IdenticalConditionalBranches:
Enabled: false
Style/LambdaCall:
Enabled: false
Style/TrailingCommaInArguments:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/StringConcatenation:
Enabled: false
Style/ZeroLengthPredicate:
Enabled: false