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 1e47383 commit 49e4856Copy full SHA for 49e4856
.rubocop.yml
@@ -41,3 +41,18 @@ Style/MethodLength:
41
Style/NumericLiterals:
42
Enabled: false
43
Description: 'This often hurts readability for exploit-ish code.'
44
+
45
+Style/PercentLiteralDelimiters:
46
+ Enabled: false
47
+ Description: >-
48
+ Metasploit devs tend to prefer [] over %w() for
49
+ nearly all cases, since we often deal with funny
50
+ looking arrays of nonwords. Consistency here is
51
+ preferred over element type safety.
52
53
+Style/WordArray:
54
55
56
+ Metasploit devs have grown comforatble with curly
57
+ braces over parens for %w. Disabling this check
58
+ prefers consistency.
0 commit comments