Craig Siemens

Results 30 issues of Craig Siemens

Say I have a function like this. ```swift func doSomething(with thing: G1, and otherThing: G2) { ... } ``` I'd like to get an array of the generic types (just...

enhancement

- [x] I have read [CONTRIBUTING](https://github.com/Quick/Quick/blob/main/CONTRIBUTING.md) and have done my best to follow them. ### What did you do? - Created a new project in Xcode 13 - Added Quick...

bug
help wanted

I've noticed that when including another yml file, some paths are treated as relative paths (`target.sources` and additional `includes`) for example, but other paths like `fileGroups` are treated as absolute...

Say I've got the following project. ``` ├── modules │   └── MyFramework │   ├── MyFramework.yml │   └── Sources │   └── Hello.swift └── project.yml ``` `project.yml` contains a target template that...

Given the following project.yml, `MyTarget` will be created with no template attributes. It seems like if anything contains an empty `templateAttributes`, it all cause all other attributes that may have...

I've got a script where I'm trying to work with a hidden `.swiftlint.yml` file. As far as I can tell Files doesn't allow working with hidden files, it always shows...

In my project, I'm defining protocols to use for dependency injection. When used for injecting system provided classes, I'm purposefully calling my protocol the same as the type from Foundation...

duplicate

It appears that using `img` tags are limited to loading an asset from the main bundle only. Is there a way to using an image from another bundle?

Normally a style from the base style is inherited if a nested style doesn't override it. It seems like every field in NSParagraphStyle is overridden if one field is set...

I'm running into an issue where if I reuse a `Style` with `UITableViewCell`s, it uses the correct size the first time it's shown based on the content size category, then...