Dónal Murtagh
Dónal Murtagh
This worked for me ```javascript import { FlatCompat } from '@eslint/eslintrc' import { fixupConfigRules } from '@eslint/compat' const compat = new FlatCompat() export default [ ...fixupConfigRules( compat.config({ extends: ['standard'] })...
> Same is happening to me. I've submitted an issue to Vue repo too: [vuejs/core#12101](https://github.com/vuejs/core/issues/12101) Looks like the problem is on Vue's side. Hopefully it will be resolved in the...
@cpovirk I've created an example app that demonstrates the problem with Error Prone v2.30.0. If you check out the [error-prone branch](https://github.com/donalmurtagh/spring-boot-demo/tree/error-prone) of [this repo](https://github.com/donalmurtagh/spring-boot-demo), then (using JDK v21) run ```...
> Would the approach of requesting errors from Error Prone work in your case? Not really, because there are too many [bug patterns](https://errorprone.info/bugpatterns) that emit warnings by default for it...
@cushon Thanks for the investigation. To be clear about my requirements: 1. The build should fail if error prone detects any problems (warnings or errors). 1. All problems in the...
This feature was [previewed in JDK 21 and finalized in JDK 22](https://openjdk.org/jeps/456). The parser fails when it encounters a variable named `_` with the following error ``` Exception in thread...
> Which version of Grails? 2.5.0
I've investigated this a bit further, and although the constraint is applied at the database level (via a unique index), it's not enforced by GORM validation, e.g. ``` groovy def...
> your example above is invalid, since neither of the two items in the deltas list have been saved @graemerocher My example was intended to illustrate the fact that GORM...
I've made a sample app available [here](https://github.com/domurtag/multi-col-constraint-bug). Click the link on the homepage to demonstrate the bug