README.md in rubocop-standard-7.0.5 vs README.md in rubocop-standard-7.1.0

- old
+ new

@@ -32,12 +32,18 @@ - config/default.yml ``` By default, `rubocop-performance` and `rubocop-rake` rules are enforced, because it's assumed that every Ruby project cares about these two sets. Why? Well, everyone should care about performance, and every project uses Rake (and Bundler) as de facto tools. -This gem also has `rubocop-minitest` and `rubocop-rails` as dependencies, so you can simply add those in for whichever project needs them: +This gem also has the following Rubocop tools as dependencies: +- `rubocop-minitest` +- `rubocop-rails` +- `rubocop-sorbet + +You can add those in for whichever project needs them: + ```yaml inherit_gem: rubocop-standard: - config/default.yml - config/minitest.yml @@ -50,9 +56,11 @@ ```yaml AllCops: Exclude: - bin/**/* + - db/**/* - node_modules/**/* + - sorbet/**/* - tmp/**/* - vendor/**/* ```