Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit disables `Performance/StringIdentifierArgument` under the `test/**` directory to suppress the following detection: ```console test/rubocop/cop/minitest/assert_match_test.rb:7:19: C: [Correctable] Performance/StringIdentifierArgument: Use :"test_registers_offense_when_using_assert_with_#{matcher}" instead of "test_registers_offense_when_using_assert_with_#{matcher}". define_method("test_registers_offense_when_using_assert_with_#{matcher}") do ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``` This setting is because the code in this directory is test code, and performance is not of utmost importance. Additionally, `:"Use ..."` is not necessarily more readable than `"Use ..."`.
- Loading branch information