Hugo Vacher
Hugo Vacher
This add a `AllowMultilineFinalElement` option, that when set to `true` allows the following cops to not consider a statement to be multiline even if the last (or only) element (value,...
This might be a personal pet peeve of mine, but I find all the examples inside the `# bad` to be hard to read, and even lead me to simply...
#### Input [→ View on sorbet.run](https://sorbet.run/#%23%20typed%3A%20true%0A%0Aclass%20Foo%0A%20%20extend%28T%3A%3ASig%29%0A%0A%20%20sig%20%7B%20returns%28String%29%20%7D%0A%20%20def%20method%0A%20%20%20%20T.unsafe%28nil%29%0A%20%20end%0Aend%0A%0Aclass%20Bar%0A%20%20extend%28T%3A%3ASig%29%0A%0A%20%20delegate%20%3Amethod%2C%20to%3A%20%3Afoo%0A%0A%20%20sig%20%7B%20returns%28Foo%29%20%7D%0A%20%20def%20foo%0A%20%20%20%20T.unsafe%28nil%29%0A%20%20end%0Aend%0A%0AT.assert_type!%28Bar.new.method%2C%20String%29%0A) ```ruby # typed: true class Foo extend(T::Sig) sig { returns(String) } def method T.unsafe(nil) end end class Bar extend(T::Sig) delegate :method, to: :foo sig...
While working on https://github.com/Shopify/spoom/pull/504 I had no choice but to also include private methods as there is no way to know if a method is public or not currently from...
Either through `ignore_classes_inheriting_from` or through another form it would be great if this wasn't limited to a single level of inheritance.
The [printer-driver-all](https://packages.ubuntu.com/focal/printer-driver-all) meta-package includes most printer drivers and removes the needs for manually adding each brand. It includes a lot of the packages that where already added manually here, so...
Is tab completion suposed to be supported ? Doesn't work for me, it just adds a tabulation.
Using the keyboard to select an item, it cool, but it should'n be limitated to arrows, pressing a number/letter should bring you to the associated entry.
I know this is a work in progress, but when I add the package to my project, no binary at all is installed on Ubuntu x64 (Actually Elementary OS x64,...