Ryan Stringham

Results 12 comments of Ryan Stringham

I think that putting each constructor parameter on their own line if there are any parameter properties helps a lot with code readability. In addition to helping with code readability,...

you mean the template in: ```typescript @Component({ ... template: ` This is my template `, ... }) ``` I have no plans to implement this, but would be happy to...

I'm happy to accept a pull request for this issue, if someone wants to try to fix it.

There is a `cliformat.ts` file in the src directory, I use this to automate formatting my angular templates with my build system.

I have a fix for this, and can submit a PR later, but don't have time to write tests right now. I'll post the diff here and you're welcome to...

Are you using es6 style import/export in your `.js` files?

It would be possible to make this work, but I don't know how to tell the difference between a generated Js file and one that is part of the sources...

@tnrich I'm happy to accept a pull request for this feature.

I submitted a feature request to vscode a while ago that would enable this feature: https://github.com/Microsoft/vscode/issues/24846 Right now vscode doesn't expose the ability to do this with their API.

This error happens before we attempt to do the move. We check that the location you are attempting to move to does not already exist: https://github.com/stringham/move-ts/blob/da386627c841b827a6e1cf121e20d507f876205a/src/extension.ts#L48-L51 Is there a way...