Skip to content

Commit 3290224

Browse files
authored
fix: don't exclude doc/**/* and config/initializers/version.rb from rubocops wrath (#615)
This started as just removing the `bin/*` since we've already got `bin/**/*` but I don't see a reason for us to exclude `doc/**/*` and `config/initializers/version.rb` 🤷 Ideally we should also include `bin/setup` but it doesn't seem like you can easily have Rubocop (re)include a single file so have left that for now
1 parent 2ad18b2 commit 3290224

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

variants/backend-base/rubocop.yml.tt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,11 @@ AllCops:
2424
DisplayCopNames: true
2525
DisplayStyleGuide: true
2626
Exclude:
27-
- 'bin/*'
28-
- config/initializers/version.rb
2927
- db/schema.rb
3028
- 'node_modules/**/*'
31-
- 'bower_components/**/*'
3229
- 'tmp/**/*'
3330
- 'vendor/**/*'
3431
- 'bin/**/*'
35-
- 'doc/**/*'
3632

3733
Layout/LineLength:
3834
Max: 120

0 commit comments

Comments
 (0)