-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Various in WIP * add IBScrollView Update files header update addSubviews to be Self typed Delete IBScrollView and exhence involvesOwnerView to support UILayoutGuide comment callAsFunction to help Swift type resolver resolve superviews comment ibsubview without superview to help swift type resolver to resolve superviews add explicit Void expression block to try improve superview typing in ibAttributes Revert code added to improve ibAttributes superview type resolver. Problem is present when using expressions within ibAttributes which use implicit assignation Remove UIViewKitPreviewsDemo library which useful for developement pourposes of UIViewKit, Add IBControl Add support for Swiftlint locally and on CI fix import was indicating older name * Fix after cherry-picks * Fix lint warnings * Add IBFreeFormViewControllerRepresentable, ibAdd * execute CI * execute CI * Move ibSetAsRootView to dedicated file * Add IBFreeFormViewControllerRepresentable * Update xcodeproj for Carthage * fix 'IBFreeFormViewControllerRepresentable<ViewController>' initializer is inaccessible due to 'internal' protection level * Add IBFreeFormViewControllerRepresentable * Update files structure and add showColors in UIViewDebug * Add ibRemove methods for UIViewControllers to work with ContainerViews * Update code syntax of code samples in README * Add IBRepresentableForViewSizeThatFits * Improve IBRepresentableX for some rare cases and removes generics, move ibSetAsRootView to UIViewController extension * update organization of code in files * ibConstraints removed from UIViewDSL extension to become freestanding function * Move some members to dedicated files, renames * Mark constraints identifier for diagnostics purposes * swiftlint fix * Keep UIViewKit.scheme and delete others
- Loading branch information
Showing
54 changed files
with
1,277 additions
and
992 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: SwiftLint | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
swiftlint: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install SwiftLint | ||
run: brew install swiftlint | ||
|
||
- name: Run SwiftLint | ||
run: swiftlint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
disabled_rules: | ||
- type_name | ||
- line_length | ||
- identifier_name | ||
- trailing_comma | ||
opt_in_rules: |
106 changes: 0 additions & 106 deletions
106
.swiftpm/xcode/xcshareddata/xcschemes/UIViewKit-Package.xcscheme
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 0 additions & 66 deletions
66
.swiftpm/xcode/xcshareddata/xcschemes/UIViewKitPreviewsDemo.xcscheme
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 0 additions & 75 deletions
75
Sources/UIViewKit/AutoresizingStrategy/InferredConstraintsStrategy.swift
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.