Andy Waite
Andy Waite
As discussed with @vinistock For the project such as [https://github.com/testdouble/mocktail](https://github.com/testdouble/mocktail) which doesn't use RuboCop, we are incorrectly showing RuboCop diagnostics. These should not be shown. (We should still show syntax...
### Motivation While working on an addon, I was encountering a Sorbet type error. Since `TypeError` inherits from `StandardError`, it was being rescued, meaning I couldn't see the full backtrace....
Prism v0.27.0, RuboCop 1.63.2 ``` puts "\na"\ "#{1 + 1}" ``` With `parser_prism` this fails with: `Layout/LineEndStringConcatenationIndentation: Indent the first part of a string concatenated with backslash.` cc @kddnewton
Similar to https://github.com/rubocop/rubocop/issues/12787: ```
With the parser set to prism, the following causes a false positive: ``` def foo raise(
## Expected behavior I'm not sure 100% sure what the correct behaviour is. ## Actual behavior Given this code: ```
## Expected behavior Given this code, and max line length set to 120: ``` x =
The following tests appear to be failing when running the [Realworld API spec](https://github.com/gothinkster/realworld/tree/master/api) against the Rails app: ``` # failure detail 1. AssertionError Response contains "user" property expected false to...
I'm trying to use an embedded font: ``` @font-face { font-family: "Zapfino"; src: url(http://#{request.host_with_port}/fonts/Zapfino.otf) format("opentype"); } .decorative { font-family: "Zapfino", sans-serif; font-size: 40px; margin-bottom: -40px; } ``` This works fine...