Filip Spiridonov

Results 21 issues of Filip Spiridonov

For https://github.com/elgerlambert/redux-localstorage/issues/49

Thrift enum: ``` enum SomeEnum { A = 1, B = 2, C = 3, } ``` I need (as in response from Java code): ``` const SomeEnum = {...

Thrift definition: ``` 1: optional i64 (js.type = "Date") timestampMs; ``` Generated type: ``` timestampMs?: ?string, ``` while it should be: ``` timestampMs?: ?string | ?number, ``` According to https://github.com/thriftrw/thriftrw/blob/master/annotations.md#timestamps...

Running `thrift2flow ./idl/code.uber.internal/**/*.thrift` works, but if I add it to package.json's scripts: ``` "idl-flow": "thrift2flow ./idl/code.uber.internal/**/*.thrift" ``` it stops working. I believe it's because my shell expands the glob expression...

Our `.eslintignore`: ``` ... !.jenkins/ ... ``` According to ESLint docs: > Lines preceded by `!` are negated patterns that re-include a pattern that was ignored by an earlier pattern...

bug

Why are you guys using double_quotes instead of single_quotes as in the javascript config? P.S. Looks like the official sass documentation uses single quotes: http://sass-lang.com/guide#topic-5

Running `yarn` gives ``` ➜ logtron git:(master) yarn yarn install v0.21.0-20170208.2352 info No lockfile found. [1/4] 🔍 Resolving packages... warning uber-raven > [email protected]: use uuid module instead warning body >...

To better understand why this should be used instead of the original module

Create a `flow-typed` folder with the library definitions: https://flow.org/en/docs/libdefs/

I have a proxy to the jenkins in VPC and I had a couple of issues with trailing slashes while configuring the plugin: 1. On the jenkins `configure` page the...