rails/guides/.rubocop.yml
Sean Doyle 90c901137f Document response.parsed_body in 7.1 release notes
Add notes for [#47144][] to the 7.1 Release Notes.

Additionally, in the time since that was merged, both Nokogiri and
Minitest have merged the PRs mentioned to integrate support for Ruby's
Pattern matching (https://github.com/sparklemotion/nokogiri/pull/2523
and https://github.com/minitest/minitest/pull/936, respectively).

This commit adds coverage for those new assertions, and incorporates
guidance into the release notes.

[#47144]: https://github.com/rails/rails/pull/47144
2023-08-23 15:33:52 -04:00

27 lines
373 B
YAML

inherit_from:
- '../.rubocop.yml'
AllCops:
TargetRubyVersion: 3.0
Style/StringLiterals:
Enabled: false
Layout/IndentationConsistency:
Enabled: false
Style/EvalWithLocation:
Enabled: false
Performance/UnfreezeString:
Enabled: false
Style/RedundantBegin:
Enabled: false
Style/TrivialAccessors:
Enabled: false
Style/RedundantPercentQ:
Enabled: false