Philip Wales
Philip Wales
Adding yaml and any other affected syntax to the ignore is what I'm doing for now. ```vim let g:indentguides_ignorelist = ['yaml', 'toml'] ``` It's not ideal because I lose indent...
for the record this is also valid and the same: ```scala val foo: Int => Int = { x => val y = 2 * x y * y }...
I say push the most primitive functionality's from `Enumerable` to `List` and have `Enumerable` be a pseudo Sub Class of either `List` or `TypedList`, since `Enumerable` is immutable and `List`...
I'm thinking: - `ToArray` - `Create` - `CreateFrom` - Replace `Append(variant)` with `Add(ParamArray)` - `First` - `Last` And maybe rename`First` with `Head` and create `Tail` and `Init`. But those might...
Issue is in [`Packages.hs#L87`](https://github.com/purescript/spago/blob/master/src/Spago/Packages.hs#L87)
I think JordanMartinez meant #663
@saschagrunert those API protocols drill down into the same structs I linked to above. Linking to those would be a least effort solution. Although keeping the version linked in sync...
Fails against any repo with any public repo with circleci. It's not a private organization issue. Something's wrong with my machine. I also built it from source and still got...
Was able to get it working out of the box on a different machine with the exact same system information as above. I think it has to do with differences...
Issue isn't really with circleci-cli but the picard docker image circelci-cli downloads. The cli executes this docker command which spins up and fails on my machine. ``` docker run --interactive...