Lucas Azzola

Results 16 issues of Lucas Azzola

Could shell out to run https://pypi.python.org/pypi/pep8 on the stdin stream?

## Issue type * [ ] Bug Report * [x] Feature Request * [ ] Question * [ ] Not an issue ## Description It would be really neat if...

feature

It seems strange to me to just spec out `array[:-1]` or `array[-1]` and not allow other negative indices. Why not propose `array[:-N]`?

It would be helpful to have a way to ignore the response body when it is binary and you only care about the headers. In addition, an option to change...

Consider: ```js const buffer = SmartBuffer.fromSize(0, 'utf16le'); buffer.writeStringNT('hello'); const output = buffer.readStringNT(); ``` We'd expect `output` to be `"hello"`, but it's current `''`, due to: https://github.com/JoshGlazebrook/smart-buffer/blob/d35c0ce6e253e7c963553a4092cb73b711caafaa/src/smartbuffer.ts#L685-L690 The buffer (after the...

## Current Behaviour When you have 1. A query rendered which has a deferred fragment. (`...Foo @defer`) 2. The Relay network respond initially with a partial response (`sink.next(data)`) 3. Then...

Danger JS now supports BitBucket Server, but this plugin relies on the `github` property existing on the `danger` DSL, and uses HTML, which BBS doesn't support. I've got a hacked...

## Idea A partial application operator, ``. Instead of `fn.papp(foo)`, you would write `fn clamp(0, 1, _)) things.map(clamp.papp(0, 1)) things.map(clamp clamp(0, 1, _), filter( x => x >= 0.5, map(Math.abs,...

enhancement

Say we want to match: ```js foo({ bar, baz }) foo({}) ``` and not ```js foo(bar); foo(); foo("bar"); ``` Currently this isn't possible without running `ast-grep` many times. [V8 exposes...

enhancement