Kyll K.

- Total activity 20
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 9
-
Kyll K. commented, -
Kyll K. created a post, Anything planned to improve Meteor package support in WebStorm? Anywhere to suggest?
Plop,Meteor is a big framework, and there's a huge amount of things possible to enhance the use of WebStorm with it.One of the main thing I'm thinking about is package support. For example, is ther... -
Kyll K. created a post, WebStorm code style - Function definition - Keep one-liner if body empty
Plop!When creating dummy functions, with an empty body, I would like them to look like that:start : function() {},pause : function() {},However, WebStorm reformats them this way:start : function() ... -
Kyll K. created a post, What's up with WebStorm JSDoc support, and how can I define cleanly my types?
Plop,Every time I write JSDoc or download a lib that wrote some, I end up trying to get WebStorm to understand it properly. And fail.JavaScript is weakly typed. But types are amazing for an IDE! It... -
-
-
Kyll K. created a post, How to properly define JSDoc for an object with methods?
Plop,This question is on the border between general best practices on JSDoc and WebStorm indexing (and auto-completion) on the topic of type definition.I have an object fooEngine which has a method... -
-
Kyll K. created a post, WebStorm: auto-align JSDoc tag values
Plop!Is there any smart way to turn that:/** * I'm a description * @param {Number} num1 First number to use * @param {Number} num2 Second number to use * @param {someLongTypeName} obj I'm an object... -
Kyll K. created a post, JSDoc and WebStorm - Override type of a function parameter field, JSDoc best practices
Plop!A piece of code will be clearer than a long text:/** * @typedef {generalObject} GeneralObject * @type {Object} * @property {Object} generalField */var generalObject = { generalField : {}};/**...