mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
73736c70b6
This is a work in progress because the code base is old and the style varies wildly, however .rubocop.yml can (and should) be tweaked over time to change standards as we see fit. As it stands right now there are few (if any) modules that pass Rubocop.
13 lines
212 B
YAML
13 lines
212 B
YAML
LineLength:
|
|
Enabled: true
|
|
Max: 180
|
|
|
|
MethodLength:
|
|
Enabled: true
|
|
Max: 30
|
|
|
|
Style/ClassLength:
|
|
Exclude:
|
|
# Most modules are quite large and all contained in one class. This is OK.
|
|
- 'modules/**/*'
|