Sam Hulick

- 活动总数 84
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 26
-
创建于 Is there a way to reformat a multi-line list into a single line, and vice-versa?
Given this code: const x = [ 2, 3, 8,]; Is there a way to quickly reformat it (with a keystroke) to this? const x = [2, 3, 8]; And also take a single line like the one above and break it out int... -
创建于 How to refactor default export?
Let's say I have this in a JS file: export default function myFunc() {} How do I refactor this to remove "default" so that all the files importing this function will change to: import { myFunc } fr... -
创建于 How to exclude node_modules and .meteor from all searches and code inspections
Is there some way to exclude the node_modules and .meteor folders from all code inspections and searches, but still have JS "import" autocomplete for npm packages? -
创建于 Bug - Javascript function parens spacing
Even though I have "function declaration parentheses" disabled, my Javascript still gets formatted like this:something('arg', function () {when it should be:something('arg', function() { -
创建于 How to always show block context at top of editor?
This feature is really handy, and I remember a long time ago, it used to always show up at the top when you were in a function or a block. Now I have to hit ctrl+shift+Q to show it. Is there a way ... -
创建于 Any way to convert single line of HTML into multiline?
Is there any quick key command to convert code like this:<div><p>Hello.</p></div>to this:<div> <p> Hello. </p></div> -
创建于 No TypeScript doc hints for function parameters?
This is from the official TypeScript site's playground (below). Note how I can make comments for function parameters, and autocomplete will give me hints. WebStorm doesn't do this. In fact, it sho... -
创建于 Anyone else having trouble with the TypeScript engine apparently stopping?
I noticed that, randomly, TypeScript will stop type-checking my code. It'll let me pass values that are type mismatches. If I restart WebStorm, then it's fine. I'm trying to decide whether I should... -
创建于 No Code Style option for ES6 destructuring
This line goes beyond my 80-char limit: const { fields, omit, folder_id, offset, limit, search, sort, order } = req.query; and formatting the code has no effect on wrapping it or chopping it down. ... -
创建于 Vue + TypeScript: type-checking is not working at all in script block
In my script block (which has lang="ts"), I have the following code: let foo = 2;foo = 'hi'; It's not complaining about this at all. Also, whenever I use interfaces I've created, it doesn't validat...