66 строки
1.0 KiB
YAML
66 строки
1.0 KiB
YAML
require:
|
|
- rubocop-minitest
|
|
|
|
AllCops:
|
|
NewCops: enable
|
|
Exclude:
|
|
- "**/node_modules/**/*"
|
|
- "vendor/bundle/**/*"
|
|
TargetRubyVersion: 2.6
|
|
|
|
Layout/LineLength:
|
|
Max: 100
|
|
|
|
Metrics/AbcSize:
|
|
Enabled: false
|
|
|
|
Metrics/BlockLength:
|
|
Enabled: false
|
|
|
|
Metrics/ClassLength:
|
|
Enabled: false
|
|
|
|
Metrics/MethodLength:
|
|
Enabled: false
|
|
|
|
Metrics/CyclomaticComplexity:
|
|
AllowedMethods:
|
|
- make_project!
|
|
- react_native_pods
|
|
- use_test_app_internal!
|
|
|
|
Metrics/PerceivedComplexity:
|
|
AllowedMethods:
|
|
- make_project!
|
|
- react_native_pods
|
|
- use_test_app_internal!
|
|
|
|
Naming/FileName:
|
|
Exclude:
|
|
- !ruby/regexp /-\d+\.\d+\.rb$/
|
|
- "**/*.podspec"
|
|
|
|
Style/Documentation:
|
|
Enabled: false
|
|
|
|
Style/FrozenStringLiteralComment:
|
|
Enabled: false
|
|
|
|
Style/HashEachMethods:
|
|
Enabled: true
|
|
|
|
Style/HashSyntax:
|
|
Enabled: false
|
|
|
|
Style/HashTransformKeys:
|
|
Enabled: true
|
|
|
|
Style/HashTransformValues:
|
|
Enabled: true
|
|
|
|
Style/TrailingCommaInArrayLiteral:
|
|
EnforcedStyleForMultiline: comma
|
|
|
|
Style/TrailingCommaInHashLiteral:
|
|
EnforcedStyleForMultiline: comma
|