Digory Doo
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 3
-
Created TypeScript inspection 'Unused parameter': Is it possible to ignore parameter names starting with underscore?
The inspection warns me when I define a function that doesn't use one of its parameters. ```const fn = (n: number) => {}; ``` That's cool. However, sometimes I want to deliberately declare a functi... -
Created Stop WebStorm from inserting comment template?
I'm evaluating WebStorm. I'm a quick writer, and I don't always look at the monitor when typing, that's why I usually disable all the automatisms in editors. I can't seem to find the switch for the... -
Created Error with type aliases [TypeScript]
I have a project that compiles without errors with the official TypeScript compiler and runs without errors, too. One of the (external) modules exports type aliases like this:export type EventCallb...