diff --git a/Structs.html b/Structs.html index a011a20a2e..ed95d60461 100644 --- a/Structs.html +++ b/Structs.html @@ -593,7 +593,7 @@
A CollectedLinter
is only created after a Linter
has run its collection steps in Linter.collect(into:)
.
All style violations found by this linter.
@@ -487,7 +487,7 @@All style violations found by this linter, and the time spent executing each rule.
@@ -540,7 +540,7 @@All corrections that were applied.
@@ -601,7 +601,7 @@Represents a file that can be linted for style violations and corrections after being collected.
@@ -378,7 +378,7 @@A linter capable of checking for violations after running each rule’s collection step.
diff --git a/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs.html b/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs.html index a011a20a2e..ed95d60461 100644 --- a/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs.html +++ b/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs.html @@ -593,7 +593,7 @@A CollectedLinter
is only created after a Linter
has run its collection steps in Linter.collect(into:)
.
All style violations found by this linter.
@@ -487,7 +487,7 @@All style violations found by this linter, and the time spent executing each rule.
@@ -540,7 +540,7 @@All corrections that were applied.
@@ -601,7 +601,7 @@Represents a file that can be linted for style violations and corrections after being collected.
@@ -378,7 +378,7 @@A linter capable of checking for violations after running each rule’s collection step.
diff --git a/docsets/SwiftLintCore.docset/Contents/Resources/Documents/vertical_parameter_alignment_on_call.html b/docsets/SwiftLintCore.docset/Contents/Resources/Documents/vertical_parameter_alignment_on_call.html index 49e3fbf41b..5c9bdb88bd 100644 --- a/docsets/SwiftLintCore.docset/Contents/Resources/Documents/vertical_parameter_alignment_on_call.html +++ b/docsets/SwiftLintCore.docset/Contents/Resources/Documents/vertical_parameter_alignment_on_call.html @@ -413,6 +413,16 @@myFunc(foo: 0,
bar: baz == 0)
+UIViewPropertyAnimator.runningPropertyAnimator(
+ withDuration: 2.0,
+ delay: 0.0,
+ options: [.curveEaseIn]
+) {
+ // animations
+} completion: { _ in
+ // completion
+}
+
foo(param1: 1, param2: bar,
↓param3: false, param4: true)
diff --git a/docsets/SwiftLintCore.tgz b/docsets/SwiftLintCore.tgz
index a936d0cf6e..b827a414ac 100644
Binary files a/docsets/SwiftLintCore.tgz and b/docsets/SwiftLintCore.tgz differ
diff --git a/vertical_parameter_alignment_on_call.html b/vertical_parameter_alignment_on_call.html
index 49e3fbf41b..5c9bdb88bd 100644
--- a/vertical_parameter_alignment_on_call.html
+++ b/vertical_parameter_alignment_on_call.html
@@ -413,6 +413,16 @@ Non Triggering Examples
myFunc(foo: 0,
bar: baz == 0)
+UIViewPropertyAnimator.runningPropertyAnimator(
+ withDuration: 2.0,
+ delay: 0.0,
+ options: [.curveEaseIn]
+) {
+ // animations
+} completion: { _ in
+ // completion
+}
+
Triggering Examples
foo(param1: 1, param2: bar,
↓param3: false, param4: true)