Created
September 11, 2019 03:16
-
-
Save prathamesh-sonpatki/147e4299572235762bac6abdae555574 to your computer and use it in GitHub Desktop.
Sample .rubocop_todo.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This configuration was generated by | |
# `rubocop --auto-gen-config` | |
# on 2019-09-11 08:43:14 +0530 using RuboCop version 0.74.0. | |
# The point is for the user to remove these configuration records | |
# one by one as the offenses are removed from the code base. | |
# Note that changes in the inspected code, or installation of new | |
# versions of RuboCop, may require this file to be generated again. | |
# Offense count: 1 | |
# Cop supports --auto-correct. | |
# Configuration parameters: TreatCommentsAsGroupSeparators, Include. | |
# Include: **/*.gemfile, **/Gemfile, **/gems.rb | |
Bundler/OrderedGems: | |
Exclude: | |
- 'Gemfile' | |
# Offense count: 6 | |
# Cop supports --auto-correct. | |
Layout/EmptyLineAfterGuardClause: | |
Exclude: | |
- 'bin/bundle' | |
# Offense count: 2 | |
# Cop supports --auto-correct. | |
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBrackets. | |
# SupportedStyles: space, no_space, compact | |
# SupportedStylesForEmptyBrackets: space, no_space | |
Layout/SpaceInsideArrayLiteralBrackets: | |
Exclude: | |
- 'config/environments/production.rb' | |
# Offense count: 1 | |
# Cop supports --auto-correct. | |
# Configuration parameters: AllowInHeredoc. | |
Layout/TrailingWhitespace: | |
Exclude: | |
- 'config/environments/test.rb' | |
# Offense count: 1 | |
Metrics/AbcSize: | |
Max: 18 | |
# Offense count: 1 | |
Metrics/CyclomaticComplexity: | |
Max: 9 | |
# Offense count: 2 | |
# Configuration parameters: CountComments, ExcludedMethods. | |
Metrics/MethodLength: | |
Max: 13 | |
# Offense count: 1 | |
Metrics/PerceivedComplexity: | |
Max: 9 | |
# Offense count: 2 | |
# Cop supports --auto-correct. | |
# Configuration parameters: AutoCorrect, EnforcedStyle. | |
# SupportedStyles: nested, compact | |
Style/ClassAndModuleChildren: | |
Exclude: | |
- 'test/channels/application_cable/connection_test.rb' | |
- 'test/test_helper.rb' | |
# Offense count: 4 | |
Style/Documentation: | |
Exclude: | |
- 'spec/**/*' | |
- 'test/**/*' | |
- 'app/helpers/application_helper.rb' | |
- 'app/mailers/application_mailer.rb' | |
- 'app/models/application_record.rb' | |
- 'config/application.rb' | |
# Offense count: 3 | |
# Cop supports --auto-correct. | |
Style/ExpandPathArguments: | |
Exclude: | |
- 'bin/bundle' | |
- 'bin/rails' | |
- 'bin/rake' | |
# Offense count: 37 | |
# Cop supports --auto-correct. | |
# Configuration parameters: EnforcedStyle. | |
# SupportedStyles: always, never | |
Style/FrozenStringLiteralComment: | |
Enabled: false | |
# Offense count: 3 | |
# Cop supports --auto-correct. | |
Style/IfUnlessModifier: | |
Exclude: | |
- 'bin/bundle' | |
# Offense count: 1 | |
# Cop supports --auto-correct. | |
Style/PerlBackrefs: | |
Exclude: | |
- 'bin/bundle' | |
# Offense count: 1 | |
# Cop supports --auto-correct. | |
Style/RedundantBegin: | |
Exclude: | |
- 'bin/yarn' | |
# Offense count: 1 | |
# Cop supports --auto-correct. | |
# Configuration parameters: . | |
# SupportedStyles: use_perl_names, use_english_names | |
Style/SpecialGlobalVars: | |
EnforcedStyle: use_perl_names | |
# Offense count: 2 | |
# Cop supports --auto-correct. | |
Style/StderrPuts: | |
Exclude: | |
- 'bin/yarn' | |
# Offense count: 33 | |
# Cop supports --auto-correct. | |
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline. | |
# SupportedStyles: single_quotes, double_quotes | |
Style/StringLiterals: | |
Exclude: | |
- 'Gemfile' | |
- 'bin/bundle' | |
- 'bin/yarn' | |
- 'config/environments/production.rb' | |
- 'config/puma.rb' | |
- 'config/spring.rb' | |
- 'test/application_system_test_case.rb' | |
- 'test/channels/application_cable/connection_test.rb' | |
# Offense count: 2 | |
# Cop supports --auto-correct. | |
# Configuration parameters: MinSize. | |
# SupportedStyles: percent, brackets | |
Style/SymbolArray: | |
EnforcedStyle: brackets | |
# Offense count: 40 | |
# Cop supports --auto-correct. | |
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. | |
# URISchemes: http, https | |
Metrics/LineLength: | |
Max: 190 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment