Roy Miloh
Roy Miloh
Say I have the following graph: `a -> b -> c -> d` (`a` depends on `b` and so on). When I do `qnm --why d`, I'm getting `c`, which...
I'm trying to add a comment (jsdoc) to a property signature node (of a type literal node) and experiencing a strange behavior. It works only on the 2nd `addJsDoc` call....
Hi, So this one is pretty interesting - currently it seems like you expect people to import `create-react-context` this way (because declaration file specifies `export default ...`): ```ts import createReactContext...
You can read more info [right here](https://palantir.github.io/tslint/usage/type-checking/). Essentially, it expends/enriches the linter knowledge (by passing project's `tsconfig.json`) so it can have even stricter rules (for instance, I'd really love to...
Hey, the following is failing due to a wrong indentation: ```yaml root: - &list - foo: 1 - bar: 1 ``` The error is: > 3:7 error wrong indentation: expected...
When I try to return `Infinity` as a result of a transformation, I'm getting a null: ```js const {compile} = require("carmi"); describe('some suite', () => { it('returns Infinity', async ()...