Aaron Beall
- Total activity 62
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 19
-
Created Run ESLint --fix on save / only on modified files
AnsweredI have “Run ESLint --fix on save” enabled: The problem is that it often freezes up my IDE, sometime I even have to force quit IntelliJ IDEA.It seems that this actually runs against all files, not j... -
Edited Cannot commit deleted file anymore?
AnsweredAfter 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 ... -
Created IntelliJ incorrectly showing TypeScript nullish coalescing `??` as a syntax error
AnsweredIDE shows this: This syntax is fine, it should not be an error. TypeScript does not report an error: -
Edited 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... -
Edited Disable JavaScript "guess work" when using TypeScript?
AnsweredIn 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 ... -
Edited 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... -
Created IntelliJ IDEA locks up on format code
AnsweredThis just started recently. With certain files (with no apparent pattern that I can tell) when I Reformat Code or Organize Imports it causes the entire IDE to completely lock up, hanging on a progr... -
Edited Disable "optimize import" on specific files
AnsweredI have a couple files in my TypeScript project that have imports which IntelliJ thinks are unused, but actually are used. When I tun Optimize Imports it removes these imports and the project doesn'... -
Edited TypeScript: Type information doesn't always show up, even though TS has it
I've noticed various cases similar to this one, often when using mapped typed, unfortunately I don't have a minimal example: Notice that `message.p` suggest `payload` with type `Field`. This is co... -
Created "Reset Current Branch to Here" on local untracked branch -- commit history lost?
AnsweredI think I just did something horribly stupid. I have a local branch (not pushed to remote) and I went to the VC -> Logs tab, chose a commit several commits back, and chose "Reset Current Branch to ...