andyrooger

Results 7 issues of andyrooger

If any plugins are specified in the .eslintrc.js then typescript-eslint-language-service fails to load. ```js module.exports = { root: true, parser: '@typescript-eslint/parser', parserOptions: { tsconfigRootDir: __dirname, project: ['./tsconfig.json'], sourceType: 'module' },...

--- - [x] you have read the documentation about [command line options](../../#available-commands--options) and [advanced use cases](../../#more-advanced-use-cases) - [x] upgrade and test with the last version - [x] specify the version...

For most text encodings, **ng-html2js** will produce an entry in the template cache containing a properly encoded string. However, I found in the past that when using templates encoded with...

type: bug
needs: investigation

This is a custom property from NSwag. So e.g. a C# enum looks like the following in the OpenAPI spec: ```cs public enum DataType { String, Integer } ``` ```json...

If `x-enumNames` exists (from NSwag), show it. e.g. ![image](https://user-images.githubusercontent.com/420834/83953053-2f636e80-a835-11ea-9a8d-4717734b7082.png) Fixes #59

I have code similar to the following ```cs [ServiceContract(Namespace="blah")] [SwaggerWcf("/v1/rest")] [SwaggerWcfServiceInfo("x", "y")] public interface IService { [OperationContract, WebGet()] MyEnum GetEnum(); } [DataContract(Namespace = "blah")] [Flags] public enum MyEnum { [EnumMember]...

Addresses a few problems with ignoring files: - **File ignore checking is async. There's no guarantee it's happened before we need to know the answer.** - In my case I...