Richard Scholey

- Total activity 13
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 6
-
Richard Scholey created a post, Is the type checking between an interface and a class with Typescript working correctly?
I created the following: interface IABC { var1: boolean;}class ABC implements IABC { var1; constructor() { } clear= (): void => { this.var1 = 999; };} But there is no type ... -
Richard Scholey created a post, How can I do a code check like the "Perform Code Analysis" when doing a GIT Commit ?
I have an AngularJS / Typescript application. When I do a commit it runs the code analysis when I have the "Perform Code Analysis" check box clicked. How can I do this without doing a commit? Is ... -
Richard Scholey created a post, Webstorm is reporting an AngularJS syntax error when using the word "as" in an expression?
Our team just moved a Typescript / AngularJS application from Visual Studio to WebStorm. Some of the code that was working before now gives an error as below: <div ng-controller="... -
Richard Scholey created a post, How can I share a CSS directory between two projects with WebStorm?
I have two projects (Admin and User). Both projects have the same CSS files. I am also using GitHub and these two projects check into two repositories. What I would like to know is how I can comb... -
Richard Scholey created a post, Is there any way to automatically reference *.d.ts files in WebStorm ?
When I was working in Visual Studio I used to create interface files *.d.ts files and then they would be immediately referenced and know to all of the *.ts files. I don't know how this functionali... -
-
Richard Scholey created a post, Why can I not look at the details of Gulp files ?
I have just set up WebStorm. I created a new project from the Google Web Sample and I would like to look at the gulpfile.jsFirst I went and installed the Gulp globally using: npm install -g gulpNe...