We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99e71d commit f5ee2d7Copy full SHA for f5ee2d7
.rubocop.yml
@@ -8,7 +8,7 @@
8
9
# inherit_from: .rubocop_todo.yml
10
11
-Style/ClassLength:
+Metrics/ClassLength:
12
Description: 'Most Metasploit modules are quite large. This is ok.'
13
Enabled: true
14
Exclude:
@@ -25,14 +25,14 @@ Style/Encoding:
25
Description: 'We prefer binary to UTF-8.'
26
EnforcedStyle: 'when_needed'
27
28
-Style/LineLength:
+Metrics/LineLength:
29
Description: >-
30
Metasploit modules often pattern match against very
31
long strings when identifying targets.
32
33
Max: 180
34
35
-Style/MethodLength:
+Metrics/MethodLength:
36
37
38
While the style guide suggests 10 lines, exploit definitions
0 commit comments