From d1eaf3f74c99f517c091e0f0040e37a65f82a36c Mon Sep 17 00:00:00 2001 From: zzak Date: Fri, 17 Nov 2023 15:37:40 +0900 Subject: [PATCH] Remove unused excludes from rails/rails rubocop config --- .rubocop.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index b2d4b591..ea74cd29 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -11,22 +11,6 @@ AllCops: SuggestExtensions: false Exclude: - '**/tmp/**/*' - - '**/templates/**/*' - - '**/vendor/**/*' - - 'actionpack/lib/action_dispatch/journey/parser.rb' - - 'actionmailbox/test/dummy/**/*' - - 'activestorage/test/dummy/**/*' - - 'actiontext/test/dummy/**/*' - - 'tools/rail_inspector/test/fixtures/*' - - guides/source/debugging_rails_applications.md - - guides/source/active_support_instrumentation.md - - '**/node_modules/**/*' - - '**/CHANGELOG.md' - - '**/2_*_release_notes.md' - - '**/3_*_release_notes.md' - - '**/4_*_release_notes.md' - - '**/5_*_release_notes.md' - - '**/6_*_release_notes.md' # Prefer assert_not over assert ! @@ -107,8 +91,6 @@ Style/HashSyntax: Layout/IndentationConsistency: Enabled: true EnforcedStyle: indented_internal_methods - Exclude: - - '**/*.md' # Two spaces, no tabs (for indentation). Layout/IndentationWidth: @@ -157,16 +139,6 @@ Style/ExplicitBlockArgument: Style/FrozenStringLiteralComment: Enabled: true EnforcedStyle: always - Exclude: - - 'actionview/test/**/*.builder' - - 'actionview/test/**/*.ruby' - - 'actionpack/test/**/*.builder' - - 'actionpack/test/**/*.ruby' - - 'activestorage/db/migrate/**/*.rb' - - 'activestorage/db/update_migrate/**/*.rb' - - 'actionmailbox/db/migrate/**/*.rb' - - 'actiontext/db/migrate/**/*.rb' - - '**/*.md' Style/MapToHash: Enabled: true