diff --git a/Structs.html b/Structs.html index a011a20a2e..ed95d60461 100644 --- a/Structs.html +++ b/Structs.html @@ -593,7 +593,7 @@

Declaration

- Show on GitHub + Show on GitHub
@@ -626,7 +626,7 @@

Declaration

- Show on GitHub + Show on GitHub
diff --git a/Structs/CollectedLinter.html b/Structs/CollectedLinter.html index 286c70d96a..5e3ed467d5 100644 --- a/Structs/CollectedLinter.html +++ b/Structs/CollectedLinter.html @@ -346,7 +346,7 @@

CollectedLinter

A CollectedLinter is only created after a Linter has run its collection steps in Linter.collect(into:).

- Show on GitHub + Show on GitHub
@@ -380,7 +380,7 @@

Declaration

- Show on GitHub + Show on GitHub
@@ -433,7 +433,7 @@

Return Value

All style violations found by this linter.

- Show on GitHub + Show on GitHub
@@ -487,7 +487,7 @@

Return Value

All style violations found by this linter, and the time spent executing each rule.

- Show on GitHub + Show on GitHub
@@ -540,7 +540,7 @@

Return Value

All corrections that were applied.

- Show on GitHub + Show on GitHub
@@ -601,7 +601,7 @@

Parameters

- Show on GitHub + Show on GitHub
diff --git a/Structs/Linter.html b/Structs/Linter.html index 7d01fa30e2..60058928f8 100644 --- a/Structs/Linter.html +++ b/Structs/Linter.html @@ -344,7 +344,7 @@

Linter

Represents a file that can be linted for style violations and corrections after being collected.

- Show on GitHub + Show on GitHub
@@ -378,7 +378,7 @@

Declaration

- Show on GitHub + Show on GitHub
@@ -408,7 +408,7 @@

Declaration

- Show on GitHub + Show on GitHub
@@ -494,7 +494,7 @@

Parameters

- Show on GitHub + Show on GitHub
@@ -547,7 +547,7 @@

Return Value

A linter capable of checking for violations after running each rule’s collection step.

- Show on GitHub + Show on GitHub
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 @@

Declaration

- Show on GitHub + Show on GitHub
@@ -626,7 +626,7 @@

Declaration

- Show on GitHub + Show on GitHub
diff --git a/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs/CollectedLinter.html b/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs/CollectedLinter.html index 286c70d96a..5e3ed467d5 100644 --- a/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs/CollectedLinter.html +++ b/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs/CollectedLinter.html @@ -346,7 +346,7 @@

CollectedLinter

A CollectedLinter is only created after a Linter has run its collection steps in Linter.collect(into:).

- Show on GitHub + Show on GitHub
@@ -380,7 +380,7 @@

Declaration

- Show on GitHub + Show on GitHub
@@ -433,7 +433,7 @@

Return Value

All style violations found by this linter.

- Show on GitHub + Show on GitHub
@@ -487,7 +487,7 @@

Return Value

All style violations found by this linter, and the time spent executing each rule.

- Show on GitHub + Show on GitHub
@@ -540,7 +540,7 @@

Return Value

All corrections that were applied.

- Show on GitHub + Show on GitHub
@@ -601,7 +601,7 @@

Parameters

- Show on GitHub + Show on GitHub
diff --git a/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs/Linter.html b/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs/Linter.html index 7d01fa30e2..60058928f8 100644 --- a/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs/Linter.html +++ b/docsets/SwiftLintCore.docset/Contents/Resources/Documents/Structs/Linter.html @@ -344,7 +344,7 @@

Linter

Represents a file that can be linted for style violations and corrections after being collected.

- Show on GitHub + Show on GitHub
@@ -378,7 +378,7 @@

Declaration

- Show on GitHub + Show on GitHub
@@ -408,7 +408,7 @@

Declaration

- Show on GitHub + Show on GitHub
@@ -494,7 +494,7 @@

Parameters

- Show on GitHub + Show on GitHub
@@ -547,7 +547,7 @@

Return Value

A linter capable of checking for violations after running each rule’s collection step.

- Show on GitHub + Show on GitHub
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 @@

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)
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)