Clement Cherlin
Clement Cherlin
Similar error in Save Actions 2.0.0 on ``` IntelliJ IDEA 2020.1.1 (Community Edition) Build #IC-201.7223.91, built on April 30, 2020 Runtime version: 11.0.6+8-b765.40 x86_64 VM: OpenJDK 64-Bit Server VM by...
I agree with andrewsawczyn that there should, at least, be an option for gitless to not stash ignored files. The project I'm working on at the moment has 80,000+ ignored...
@jesseduffield "Gypsy" is arguably not a slur. "Gyp" is widely considered a slur, so your (well cited) discussion of whether the term "Gypsy" is offensive in an of itself is...
I think there's a good case for having a mutual-exclusion annotation, such as `@IncompatibleWith(A.class) @interface B {}` which states that if any scope is annotated with both `@A` and `@B`...
An additional alternative for consideration: * **Annotations cannot imply other annotations** or at least * Annotation A cannot imply annotation B if annotation B has parameters The implication rabbit hole...
Tools should by default warn or error on unavailable annotations (I lean towards recommending error for interactive tools and warning for batch tools), and provide an option whether to suppress...
As an example of the inconvenience not having descendant selectors causes, in my personal theme, instead of the scope `["keyword source.python", "punctuation source.python"]`, I'm using this quasi-exhaustive list, which I...
> Spring Data is not in charge of defining yet another query language. We've built query derivation to allow users conveniently declare simple queries without having to dive into the...
I think an annotation that says that a method throws 100% of the time if a given parameter is null does have value as a form of documentation, so I...
@cpovirk I can't speak to Kotlin, but don't think the majority of Java projects would need to write this annotation at all; they could rely on standard nullability annotations. I...