SJ

Results 222 comments of SJ

What does `MyCustomField` inherit from? Because `help` is (supposed to be) a required field ![Screenshot 2024-04-19 at 14 39 57](https://github.com/pantsbuild/pants/assets/3823045/3773cb5b-1968-4284-b4f5-80ac619cb980)

As per my comment in Slack, apparently you need to use `UnsetBool` ```python from pants.option.custom_types import UnsetBool foo = BoolOption( default=UnsetBool, help="bar", ) ```

Not really sure what this would look like. Would it take the place of filesystem? Or do we want a target "cue" (like a colon). For example, most of the...

@benjyw @kaos This code appears to functionally work, but I think the `peek` code needs some TLC, because I noticed we're using private functions from other modules, a lot of...

Update from the monthly call discussion: - Test peek on jriddy/clam-diggers repo - Will run peek with/without goals to see if there is any non-negligible performance hit - If no...

So there is a pretty good JS backend right now, if that's what you're interested in (updates here: https://github.com/pantsbuild/pants/discussions/17357). In terms of Typescript, that's still being discussed in terms of...

So, about an hour ago is the first time I'd actually ever seen/used the Swift Mirror system - so I'm in the process of learning how it works. It looks...

Referencing another project I found that might have a workaround for this? https://github.com/soundcloud/Axt/blob/23a8a92bd77ac9865f8d38f23f07f3ed42ce4da9/Sources/Axt/Native/Toggle.swift#L45

Alright, good progress here - appears to work for my `isOn` tests. If I can get the toggle() part of it working, I'll make a PR. ```swift // ViewInspector equivalent...