xcatliu

Results 59 comments of xcatliu

cqc use `babel-eslint` to parse the code, so it will abort the progress when the parse program get errors. However only complexity checker triggers the parse program. So it's possible...

@nithinkashyapn I checked the [source code](https://github.com/xcatliu/cqc/blob/master/src/CheckerResult/cqcReporter.js#L14) and the [test](https://github.com/xcatliu/cqc/blob/master/test/integration/reportWithFormatOptions.test.js#L20). The `format` option only accepts lowercase `json`, not `JSON` Please try to use `json` and tell me if there are any...

@GaZ3ll3 我的想法: 1. 在草丛中转弯要 1 帧 2. 进入草丛和从草丛出去都需要 2 帧 考虑独立草丛有星星的情形,确实是更加容易打中敌方。不过竞技游戏不应该提倡进攻吗?若有智能坦克判断出来在这种情况下很容易打中对方,那么他理应胜利。

感谢分享,赞同 > - 比 _ 有一点好的地方是 _ 有时候会难以分辨,就好像空格一样。 较复杂的系统可参考 BEM 命名法 http://bem.info/method/definitions/

![](https://assets-cdn.github.com/images/icons/emoji/unicode/1f44d.png) 总结的很到位,redux + redux-thunk 还是目前比较成熟的方案

According to the source code, the return type of render should be `Element`, But it also can be an array of Element, so it should be `Element | Element[]` right...

@dntzhang That's why I defined the return type as `void`: we did not use the return value of `render`

What if I want to use the return value of render? ``` let foo = render(, 'body'); console.log(foo); // What type will foo be ```