Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new Lint/ItWithoutArgumentsInBlock cop #12518

Merged

Conversation

koic
Copy link
Member

@koic koic commented Dec 7, 2023

Follow up https://bugs.ruby-lang.org/issues/18980 and ruby/ruby#9152.

Emulates the following Ruby warnings in Ruby 3.3.

$ ruby -e '0.times { it }'
-e:1: warning: `it` calls without arguments will refer to the first block param in Ruby 3.4;
use it() or self.it

it calls without arguments will refer to the first block param in Ruby 3.4.
So use it() or self.it to ensure compatibility.

# bad
do_something { it }

# good
do_something { it() }
do_something { self.it }

Before submitting the PR make sure the following are checked:

  • The PR relates to only one subject with a clear title and description in grammatically correct, complete sentences.
  • Wrote good commit messages.
  • Commit message starts with [Fix #issue-number] (if the related issue exists).
  • Feature branch is up-to-date with master (if not - rebase it).
  • Squashed related commits together.
  • Added tests.
  • Ran bundle exec rake default. It executes all tests and runs RuboCop on its own code.
  • Added an entry (file) to the changelog folder named {change_type}_{change_description}.md if the new code introduces user-observable changes. See changelog entry format for details.

@koic koic force-pushed the add_new_lint_it_without_arguments_in_block_cop branch 2 times, most recently from 87e6dce to d3d0c0f Compare December 7, 2023 17:55
Follow up https://bugs.ruby-lang.org/issues/18980 and ruby/ruby#9152.

Emulates the following Ruby warnings in Ruby 3.3.

```ruby
$ ruby -e '0.times { it }'
-e:1: warning: `it` calls without arguments will refer to the first block param in Ruby 3.4;
use it() or self.it
```

`it` calls without arguments will refer to the first block param in Ruby 3.4.
So use `it()` or `self.it` to ensure compatibility.

```ruby
# bad
do_something { it }

# good
do_something { it() }
do_something { self.it }
```
@koic koic force-pushed the add_new_lint_it_without_arguments_in_block_cop branch from d3d0c0f to 4c1884b Compare December 7, 2023 18:04
@koic koic mentioned this pull request Dec 9, 2023
8 tasks
@bbatsov bbatsov merged commit 3b0360b into rubocop:master Dec 9, 2023
29 checks passed
@bbatsov
Copy link
Collaborator

bbatsov commented Dec 9, 2023

Looks good!

@koic koic deleted the add_new_lint_it_without_arguments_in_block_cop branch December 10, 2023 02:34
koic added a commit to koic/rubocop that referenced this pull request Dec 11, 2023
This PR makes `Style/RedundantSelf` allow the `self.it` method in a block.

It respects following Ruby 3.3's warning:

```console
$ ruby -e '0.times { begin; it; end }'
-e:1: warning: `it` calls without arguments will refer to the first block param in Ruby 3.4; use it() or self.it
```

Related PR ... rubocop#12518
koic added a commit to koic/rubocop that referenced this pull request Dec 11, 2023
This PR makes `Style/MethodCallWithoutArgsParentheses` allow the parenthesized `it` method in a block.

It respects following Ruby 3.3's warning:

```console
$ ruby -e '0.times { begin; it; end }'
-e:1: warning: `it` calls without arguments will refer to the first block param in Ruby 3.4; use it() or self.it
```

Related PR ... rubocop#12518
bbatsov pushed a commit that referenced this pull request Dec 11, 2023
This PR makes `Style/RedundantSelf` allow the `self.it` method in a block.

It respects following Ruby 3.3's warning:

```console
$ ruby -e '0.times { begin; it; end }'
-e:1: warning: `it` calls without arguments will refer to the first block param in Ruby 3.4; use it() or self.it
```

Related PR ... #12518
bbatsov pushed a commit that referenced this pull request Dec 11, 2023
This PR makes `Style/MethodCallWithoutArgsParentheses` allow the parenthesized `it` method in a block.

It respects following Ruby 3.3's warning:

```console
$ ruby -e '0.times { begin; it; end }'
-e:1: warning: `it` calls without arguments will refer to the first block param in Ruby 3.4; use it() or self.it
```

Related PR ... #12518
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants