Yudai Takada

Results 105 comments of Yudai Takada

@etagwerker Thank you for your review! I added it to changelog, resolved the conflict, and then squashed the commit according to the checklist.

I tried to make it easy to use as GitHub Actions for the time being. - https://github.com/ydah/mdformat-action but since it is a formatter, even with the `--check` option, the log...

It was conflicting and has been resolved. It seemed like a good idea to specify this 4874a5a4a2a58e76d343aaa02279cd93b16f5a30 in .git-blame-ignore-revs. If it is better to include it in this PR, we...

If no one plans to send a PR, I will send. How do you like it?

As per the comments below we need a new jruby CI environment. https://github.com/rubocop/rubocop/pull/10906#discussion_r947845477

It seems to work when I run the following code on jruby-9.3.7.0 in my local environment. ```ruby r = /[\§]/ p r => /[§]/ ``` ``` ruby -v jruby 9.3.7.0...

Thank you so much. Reproduced it. If the error occurs in `Layout/LineLength` as shown below, please upgrade the RuboCop version to v0.89 to avoid the error. Refs: https://github.com/rubocop/rubocop/releases/tag/v0.89.0 ``` 1...

The reproduced code is as follows: ```ruby # frozen_string_literal: true require 'yaml' MESSAGES = YAML.load_file('rps_message.yml') puts format(MESSAGES['computer_choice'], choice: variable) ```