mirror of
https://github.com/cmur2/openvpn-status-web.git
synced 2024-11-01 00:56:16 +01:00
106 lines
1.5 KiB
YAML
106 lines
1.5 KiB
YAML
require:
|
|
- rubocop-rake
|
|
- rubocop-rspec
|
|
|
|
AllCops:
|
|
TargetRubyVersion: '2.5'
|
|
NewCops: enable
|
|
|
|
Gemspec/RequireMFA:
|
|
Enabled: false
|
|
|
|
Layout/EmptyLineAfterGuardClause:
|
|
Enabled: false
|
|
|
|
# allows nicer usage of private_class_method
|
|
Layout/EmptyLinesAroundArguments:
|
|
Enabled: false
|
|
|
|
Layout/HashAlignment:
|
|
Enabled: false
|
|
|
|
Layout/LeadingEmptyLines:
|
|
Enabled: false
|
|
|
|
Layout/LineLength:
|
|
Max: 200
|
|
|
|
Layout/SpaceInsideHashLiteralBraces:
|
|
Enabled: false
|
|
|
|
Metrics/AbcSize:
|
|
Enabled: false
|
|
|
|
Metrics/BlockLength:
|
|
Enabled: false
|
|
|
|
Metrics/ClassLength:
|
|
Enabled: false
|
|
|
|
Metrics/CyclomaticComplexity:
|
|
Enabled: false
|
|
|
|
Metrics/MethodLength:
|
|
Enabled: false
|
|
|
|
Metrics/PerceivedComplexity:
|
|
Enabled: false
|
|
|
|
Naming/MethodParameterName:
|
|
Enabled: false
|
|
|
|
Naming/MemoizedInstanceVariableName:
|
|
Enabled: false
|
|
|
|
Style/AccessorGrouping:
|
|
Enabled: false
|
|
|
|
Style/ConditionalAssignment:
|
|
Enabled: false
|
|
|
|
Style/Documentation:
|
|
Enabled: false
|
|
|
|
Style/FormatStringToken:
|
|
Enabled: false
|
|
|
|
Style/GuardClause:
|
|
Enabled: false
|
|
|
|
Style/HashEachMethods:
|
|
Enabled: true
|
|
|
|
Style/HashTransformKeys:
|
|
Enabled: true
|
|
|
|
Style/HashTransformValues:
|
|
Enabled: true
|
|
|
|
Style/IdenticalConditionalBranches:
|
|
Enabled: false
|
|
|
|
Style/InverseMethods:
|
|
Enabled: false
|
|
|
|
Style/NegatedIf:
|
|
Enabled: false
|
|
|
|
Style/RescueModifier:
|
|
Enabled: false
|
|
|
|
Style/Semicolon:
|
|
AllowAsExpressionSeparator: true
|
|
|
|
Style/SymbolArray:
|
|
Enabled: false
|
|
|
|
RSpec/ExampleLength:
|
|
Max: 10
|
|
|
|
RSpec/FilePath:
|
|
CustomTransform:
|
|
OpenVPNStatusWeb: openvpn-status-web
|
|
|
|
RSpec/MultipleExpectations:
|
|
Max: 5
|