Sebastian Obentheuer

- Total activity 103
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 19
- Subscriptions 31
-
Sebastian Obentheuer commented, -
Sebastian Obentheuer created a post, 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... -
Sebastian Obentheuer created a post, 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 -
Sebastian Obentheuer commented, -
Sebastian Obentheuer created a post, 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... -
Sebastian Obentheuer commented, -
Sebastian Obentheuer created a post, 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 ... -
Sebastian Obentheuer commented, -
Sebastian Obentheuer created a post, 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? -
Sebastian Obentheuer created a post, 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>