mirror of
https://github.com/cmur2/openvpn-status-web.git
synced 2024-12-22 12:54:24 +01:00
764fcf93fa
Updates the requirements on [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop-rspec/releases) - [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rspec/compare/v2.31.0...v3.0.1) --- updated-dependencies: - dependency-name: rubocop-rspec dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
112 lines
1.6 KiB
YAML
112 lines
1.6 KiB
YAML
require:
|
|
- rubocop-rake
|
|
- rubocop-rspec
|
|
|
|
AllCops:
|
|
TargetRubyVersion: 3.0'
|
|
NewCops: enable
|
|
|
|
Gemspec/DevelopmentDependencies:
|
|
EnforcedStyle: gemspec
|
|
|
|
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:
|
|
# Enabled: false
|
|
|
|
RSpec/SpecFilePathFormat:
|
|
CustomTransform:
|
|
OpenVPNStatusWeb: openvpn-status-web
|
|
|
|
RSpec/MultipleExpectations:
|
|
Max: 5
|