-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy path.rubocop.yml
65 lines (55 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
AllCops:
Include:
- '**/Gemfile'
- Vagrantfile
- Berksfile
- cookbook/**/*.rb
- lib/**/*.rb
- instances/*.rb
- targets/*.rb
- utils/*.rb
Exclude:
- berks-cookbooks/**/*
- chef-repo/**/*
- vendor/**/*
- data/**/*
Style/FrozenStringLiteralComment:
Exclude:
- "**/*"
Metrics/MethodLength:
Exclude:
- targets/*.rb
- instances/*.rb
- lib/pentestenv/instance.rb
- lib/pentestenv/customization.rb
Metrics/ClassLength:
Exclude:
- lib/pentestenv/customization.rb
Metrics/AbcSize:
Exclude:
- targets/*.rb
- instances/*.rb
- lib/pentestenv/customization.rb
Metrics/BlockLength:
Exclude:
- instances/*.rb
Metrics/CyclomaticComplexity:
Exclude:
- instances/*.rb
Metrics/LineLength:
Exclude:
- instances/*.rb
- targets/*.rb
Metrics/PerceivedComplexity:
Exclude:
- instances/*.rb
Naming/FileName:
Exclude:
- /Vagrantfile
- Berksfile
- cookbook/Berksfile
- targets/*.rb
- instances/*.rb
Security/Eval:
Exclude:
- Berksfile