forked from fakefs/fakefs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
54 lines (54 loc) · 976 Bytes
/
.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
47
48
49
50
51
52
53
54
AllCops:
UseCache: true
Include:
- '**/Gemfile'
- lib/**/*
- spec/**/*
- gemirro.gemspec
Exclude:
- files/**/*
- templates/**/*
- etc/**/*
Metrics/MethodLength:
Exclude:
- lib/**/*
- test/**/*.rb
- spec/**/*.rb
Metrics/ClassLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Metrics/LineLength:
Exclude:
- test/**/*
Metrics/ParameterLists:
Enabled: false
Metrics/CyclomaticComplexity:
Severity: warning
Max: 20
Metrics/PerceivedComplexity:
Severity: warning
Max: 20
Lint/Eval:
Enabled: false
Metrics/BlockNesting:
Severity: warning
Max: 4
Metrics/AbcSize:
Enabled: false
Performance/StringReplacement:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Style/PredicateName:
Exclude:
- lib/fakefs/file.rb
Style/MethodName:
Enabled: false
Style/ModuleFunction:
Enabled: false
Style/SymbolProc:
Enabled: false
Style/TrivialAccessors:
Enabled: true
ExactNameMatch: true