Sebastian Obentheuer

- Total activity 103
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 19
- Subscriptions 31
-
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 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... -
Created Change Signature => Delegate via overloading method
Hey there, I found this in the IntelliJ Forum but could not find it in Webstorm:"Change Signature" refactoring there is a radio button atthe top of the dialog to select "Delegate via overloading me... -
Created [Typescript] Is there a way to quickly generate/derive parameters names from class names?
I call functions like this a lot: function(workItem:WorkItem, project:Project, resources:Resources) {} I.e. having a bunch of params that are named the same as some class name. Is there a kind of a... -
Created Typescript: "Potentially invalid reference to 'this' of a class from closure" in constructor?
I get the above error from the "this.addField" command in the constructor. Is that error right? I thought I don't have to bind member methods called in the ctor? class Foo extends Item { construct...