Skip to content

Commit

Permalink
Dump full RuboCop config
Browse files Browse the repository at this point in the history
This automated commit dumps the contents of the full RuboCop config.
[dependabot skip]
  • Loading branch information
github-actions[bot] committed May 23, 2024
1 parent 52891e0 commit 16e08cf
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion test/fixtures/full_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ AllCops:
- rails
rubocop-rspec:
- rspec
- rspec-rails
rubocop-minitest:
- minitest
rubocop-sequel:
Expand Down Expand Up @@ -2339,6 +2340,7 @@ Style/AccessModifierDeclarations:
- inline
- group
AllowModifiersOnSymbols: true
AllowModifiersOnAttrs: true
SafeAutoCorrect: false
Style/AccessorGrouping:
Description: Checks for grouping of accessors in `class` and `module` bodies.
Expand Down Expand Up @@ -2734,6 +2736,7 @@ Style/DocumentationMethod:
Description: Checks for missing documentation comment for public methods.
Enabled: false
VersionAdded: '0.43'
AllowedMethods: []
Exclude:
- "/spec/**/*"
- "/test/**/*"
Expand Down Expand Up @@ -3041,6 +3044,7 @@ Style/HashSyntax:
- never
- either
- consistent
- either_consistent
UseHashRocketsWithSymbolValues: false
PreferHashRocketsForNonAlnumEndingSymbols: false
Style/HashTransformKeys:
Expand Down Expand Up @@ -3977,6 +3981,13 @@ Style/Send:
StyleGuide: "#prefer-public-send"
Enabled: false
VersionAdded: '0.33'
Style/SendWithLiteralMethodName:
Description: Detects the use of the `public_send` method with a static method name
argument.
Enabled: pending
Safe: false
AllowSend: true
VersionAdded: '1.64'
Style/SignalException:
Description: Checks for proper usage of fail and raise.
StyleGuide: "#prefer-raise-over-fail"
Expand Down Expand Up @@ -4125,6 +4136,11 @@ Style/StructInheritance:
SafeAutoCorrect: false
VersionAdded: '0.29'
VersionChanged: '1.20'
Style/SuperArguments:
Description: Call `super` without arguments and parentheses when the signature is
identical.
Enabled: pending
VersionAdded: '1.64'
Style/SuperWithArgsParentheses:
Description: Use parentheses for `super` with arguments.
StyleGuide: "#super-with-args"
Expand Down Expand Up @@ -4156,7 +4172,7 @@ Style/SymbolProc:
Enabled: true
Safe: false
VersionAdded: '0.26'
VersionChanged: '1.40'
VersionChanged: '1.64'
AllowMethodsWithArguments: false
AllowedMethods:
- define_method
Expand Down

0 comments on commit 16e08cf

Please sign in to comment.