Aaron Beall

- Total activity 59
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 18
-
Aaron Beall created a post, AnsweredCannot commit deleted file anymore?
After updating it seems I cannot git commit a deleted file: The context menu for both the file and the change-list looks like this. If the change-list contains something other change it lets me ... -
-
Aaron Beall created a post, AnsweredIntelliJ incorrectly showing TypeScript nullish coalescing `??` as a syntax error
IDE shows this: This syntax is fine, it should not be an error. TypeScript does not report an error: -
-
-
Aaron Beall created a post, CSS `composes: ...` suggestions and auto-complete
IntelliJ understands the `composes` syntax: // some.css.foo { composes: flex-centered from "../../../../../styles/layout.css";} In the above snippet IntelliJ does a good job understanding the synt... -
-
Aaron Beall created a post, AnsweredDisable JavaScript "guess work" when using TypeScript?
In JavaScript IntelliJ does a lot of intelligent guessing to do things like find declarations, references, refactoring, etc. Sadly it's often wrong, because JS is dynamic there's a lot of guessing ... -
Aaron Beall created a post, Indent JSX expression with indented newline the same way as vanilla JS
This block of code is formatted by IntelliJ auto-formatter: const jsx = ( <div> { some_expression && <span> Some Text </span> } </div>); I would like the inner `<span>` to be ind... -
Aaron Beall commented,