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 Aug 1, 2024
1 parent aa5d065 commit f15b60b
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions 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 @@ -182,6 +183,14 @@ Bundler/OrderedGems:
- "**/*.gemfile"
- "**/Gemfile"
- "**/gems.rb"
Gemspec/AddRuntimeDependency:
Description: Prefer `add_dependency` over `add_runtime_dependency`.
StyleGuide: "#add_dependency_vs_add_runtime_dependency"
Reference: https://github.com/rubygems/rubygems/issues/7799#issuecomment-2192720316
Enabled: pending
VersionAdded: '1.65'
Include:
- "**/*.gemspec"
Gemspec/DependencyVersion:
Description: Requires or forbids specifying gem dependency versions.
Enabled: false
Expand Down Expand Up @@ -1958,8 +1967,9 @@ Metrics/BlockNesting:
StyleGuide: "#three-is-the-number-thou-shalt-count"
Enabled: true
VersionAdded: '0.25'
VersionChanged: '0.47'
VersionChanged: '1.65'
CountBlocks: false
CountModifierForms: false
Max: 3
Metrics/ClassLength:
Description: Avoid classes longer than 100 lines of code.
Expand Down Expand Up @@ -2339,6 +2349,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 +2745,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 +3053,7 @@ Style/HashSyntax:
- never
- either
- consistent
- either_consistent
UseHashRocketsWithSymbolValues: false
PreferHashRocketsForNonAlnumEndingSymbols: false
Style/HashTransformKeys:
Expand Down Expand Up @@ -3977,6 +3990,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 +4145,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 +4181,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 f15b60b

Please sign in to comment.