Yudai Takada
Yudai Takada
Fixed: #10902 ----------------- Before submitting the PR make sure the following are checked: * [x] The PR relates to *only* one subject with a clear title and description in grammatically...
This PR added an example for the case of a `return value` within a condition. refs: #10904 Examples were added for the following bad/good cases: ```ruby # bad def test...
This PR is add `AllowComments` option to `Style/MultilineTernaryOperator` Fixed a case in which comments were disappearing during autocorrect as well as: https://github.com/rubocop/rubocop/issues/10280 . Refs: https://github.com/rubocop/rubocop/pull/10525 For example, we have the...
This PR, we have added a supplement on the `AllowedMethods` option and changed the examples. Ref: https://github.com/rubocop/rubocop/pull/10876#issuecomment-1207885926 ----------------- Before submitting the PR make sure the following are checked: * [x]...
Resolve: #1356 Concerns include the following: `RSpec/ContextWording` prefix match checking is strict as follows. ```ruby # for example - `Prefixes: [when]` # good context 'when something' do end # bad...
Follow up https://github.com/rubocop/rubocop/pull/10555 This PR obsoletes the `IgnoredPatterns` option and replaces it with the `AllowedPatterns` option. --- Before submitting the PR make sure the following are checked: * [x] Feature...
original issue: https://github.com/rubocop/rubocop-rspec/issues/1342#issue-1322935208 ```ruby # bad expect(find('input').value).to eq('foobar') # good expect(page).to have_field(with: 'foobar') ```
Hello! Thank you for this awesome project! This PR has fix a typo. - projectStrem -> projectStream
This PR is fix some typos: - "formater" -> "formatter" - "criticed" -> "criticized" - "indepedent" -> "independent" - "seperated" -> "separated" - "existant" -> "existent" Commits are separated for...
In this PR, follow up on the following comments: Refs: https://github.com/rubocop/rubocop-rspec/pull/1375#pullrequestreview-1096722970 --- Before submitting the PR make sure the following are checked: * [x] Feature branch is up-to-date with `master`...