Skip to content

Commit

Permalink
Enforce double quotes for config and RSpec directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Grigore-George-Mihai committed Oct 23, 2024
1 parent adebb7f commit d22fcaa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [1.1.2] - 2024-10-23
### Changed
- Enforced double quotes in RuboCop configuration for `config/**/*` and `spec/**/*` directories.

## [1.1.1] - 2024-10-21
### Added
- Added some default rules for RuboCop configuration.
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/rails/suite/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Rubocop
module Rails
module Suite
VERSION = "1.1.1"
VERSION = "1.1.2"
end
end
end
2 changes: 1 addition & 1 deletion rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ AllCops:
TargetRubyVersion: 3.0
Exclude:
- "db/schema.rb"
- "config/**/*"
- "bin/*"

# Enable Rails-related cops
Expand Down Expand Up @@ -69,6 +68,7 @@ Style/StringLiterals:
- "app/**/*"
- "config/**/*"
- "lib/**/*"
- "spec/**/*"
- "test/**/*"
- "Gemfile"

Expand Down

0 comments on commit d22fcaa

Please sign in to comment.