Sebastian Obentheuer
- 活动总数 119
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 22
- 订阅数 37
-
创建于 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? -
创建于 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> -
创建于 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... -
创建于 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... -
创建于 [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... -
创建于 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... -
创建于 [WebStorm] Jest tests: Test config for a group of files
All my tests in one folder need the jest option `--env=node`. All other test the regular `--env=jsdom`. Can I create a "Run All Tests" config for this scenario? Or at least two configs: "Run node t... -
创建于 Generate Setters: setVal() instead of set val
I want to follow AirBnB Style: https://airbnb.io/javascript/#accessors--no-getters-setters How can I generate setVal accessors? I always get the set val methods. // bad class Dragon { get age... -
创建于 Slow debug build with Storybook
Hey there JetBrains!Debug build is super slow when I use Storybook in a React project (using create-react-app). Do you guys have any idea how I could speed that up? See below from my Github issu... -