Anthony Serravalle

Results 8 comments of Anthony Serravalle

I believe this is due to `tslintjson.ts` ignoring the value of `no-consecutive-blank-lines`. ```typescript if (rules.has("no-consecutive-blank-lines")) { formattedCode = formattedCode.replace(/\n+^$/mg, "\n"); } ``` Looking at the block of code, it could...

To clarify as to what the issue is: the debugger actually attaches, but breakpoints never trigger. Below is the output of setting `debugLog` to true: ``` Attached to duktape debugger....

I'm going to try and take some time to clean up the changes before getting them to you... I just realized they were made against a really old version of...

I had a coworker take a look at our issue, and she noticed a few things: * The `Unknown source file: ...` error message seems to contain the wrong path...

I'll have him test it out as soon as possible (I work with him), but I don't believe that solves the `.wasm` issue I mentioned earlier. Though increased logging for...

@johanblumenberg I tried your build, and I was having issues with mocking properties defined in interfaces. For example: ``` interface Foo { someProperty: string; } describe('Tests', () => { it('Should...

Hm... never mind. I tried to reproduce it locally with a much smaller sample, and it worked fine. The below code passes just fine: ``` import { imock, instance, when...

@NagRock Is this repository still maintained? This review was opened over a year ago, and despite being incredibly useful, hasn't been merged into master. Essentially, I work on a project...