Nick Retallack

Results 36 issues of Nick Retallack

This appears to be an implementation of the Rails Resource pattern. I like it. It saves a lot of boilerplate code at the beginning of a project. I just downloaded...

This coffeescript should be valid. ``` coffeescript a b, c d ``` In regular coffeescript, it generates ``` javascript a(b, c, d); ``` But redux says: ``` Syntax error on...

bug

I haven't tested this code, but I can tell from the part where it's appending dots that it doesn't handle array indexes. It actually might be pretty easy to fix...

Commands run with `--no-prettier` ### before/after JSX property Input: ``` // @flow ({ a, b: ( ), c, }); ``` Output with recast: ``` ({ a, b: ( ), c...

formatting

Input: ``` // @flow import {Node} from 'react'; ``` Output: ``` import { ReactNode } from 'react'; ``` Validation error: ``` verification failed, diff after stripping type annotations: - Expected...

Output: ``` class A { a: Function; a() {} } ``` Output: ``` class A { a: Function; a() {} } ``` It should strip the `a: Function;` line. If...

https://github.com/zxbodya/flowts/issues/13

Input: ``` /* @flow */ () => ` x ` ``` Output is the same regardless of the `--no-prettier` setting: ``` () => ` x `; ``` It also fails...

bug

I'm pretty sure it didn't do this in the previous version of flowts. This issue was just introduced. Now, when I put in this input, it produces output that fails...

formatting

This isn't bad but it's a pointless delta. I was hoping recast would suppress it. Input: ``` // @flow type a = string; type b = string; ``` Output is...

formatting