Sebastian Obentheuer
- Total activity 110
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 20
- Subscriptions 34
-
Created How to exclude files from Prettier glob pattern?
I have a hard time to exclude files from being formatted "on save" with Prettier using the glob pattern. I want to exclude all files that contain the extension ".min." foo.css (good) foo.min.css (b... -
Created Naming HTML-tags in structure view for a React JSXfile.
Is there a way to name / label the HTML-tags in the structure view for a React JSX file?region comments (https://www.jetbrains.com/help/idea/viewing-structure-of-a-source-file.html#group-members)... -
Created Since new WS 2024: Inserting Github Copilot suggestions vie TAB key only works on second try?
The suggested completions in the editor are not inserted when I press TAB on the first try. I.e. I press Tab, then it jumps to next line, I go back, now if I press Tab again it inserts the suggesti... -
Created How to run debug configs in my monorepo?
The error: Cannot find “pnpm-workspace.yml” in Debug mode. I dont know what changed (it worked before), but I cannot run the Run Configurations of my monorepo in “Debug” mode anymore.Regular run w... -
Created Is there a way to disable Webstorm "unused XY" warnings for certain files (here: Storybook stories)?
Can I disable all the "unused XY" warnings I get when using Storybook stories? Unused default export or Unused constant XY -
Created Find usages of React components that use a certain optional prop?
I would need this quite often: Call "Find Usages (Alt + F7)" for a component (here ItemsTable, which is used hundreds of times in my codebase) but only when a certain optional prop (e.g. menuIt... -
Created Get to run the official Tailwind Sorting plugin?
I try to get to run the official Tailwind Sorting plugin (https://tailwindcss.com/blog/automatic-class-sorting-with-prettier) I use pnpm in a monorepo. I installed "prettier-plugin-tailwindcss" in ... -
Created How to run a plugin on save?
I use the plugin "Tailwind Formatter" plugin. How can I configure the "Actions on Save" Tool to run it? -
Created Move HTML Tags Up / Down in hierarchy
Can I move HTML Tags Up / Down in hierarchy? I do this a lot. make this: <div> <span>Foo</span></div> into this: <span> <div>Foo</div></span> -
Created Tailwind CSS completion bug?
Autocompletion works fine for me, until: I use a function to create my class strings (here "cn()" ). In this case I have autosuggest only at the first position of my string (here when I start to ty...