Akim Demaille

Results 83 comments of Akim Demaille

I think none of us would use them. But the point here is that this cop promotes using regular attribute syntax for accessors, and these special cases aren't accessors. For...

Another example of false positive. I don't know if it's the same bug. ```ruby # frozen_string_literal: true def fun foo .bar(12) \ || baz end ``` ``` $ bundle exec...

@adityasinghbaghel I think you misread my example. The continuation is not on a method call, but on the `||`.

https://github.com/rubocop/rubocop/issues/13145#issuecomment-2338703732 was not addressed. I'm going to open another issue.

I face the same issue (Yard 0.9.36) on this sample test case: ```ruby def foo(code) case code in Foo end end def bar(code) code.type => Bar end ``` ``` $...

I am still interested in this feature.

This would definitely solve all the issues I face in my uses of RuboCop with generated code. And make my hand-written code more natural and easier to maintain: editing two...