Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sort imports #689

Merged
merged 4 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ opt_in_rules:
- redundant_nil_coalescing
- redundant_type_annotation
- sorted_first_last
- sorted_imports
- static_operator
- toggle_bool
- trailing_closure
Expand Down
2 changes: 1 addition & 1 deletion Examples/Examples/BasemapGalleryExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS
import ArcGISToolkit
import SwiftUI

struct BasemapGalleryExampleView: View {
/// The `Map` displayed in the `MapView`.
Expand Down
4 changes: 2 additions & 2 deletions Examples/Examples/FloatingPanelExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGISToolkit
import ArcGIS
import ArcGISToolkit
import SwiftUI

struct FloatingPanelExampleView: View {
/// The height of the map view's attribution bar.
Expand Down
4 changes: 2 additions & 2 deletions Examples/Examples/FloorFilterExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGISToolkit
import ArcGIS
import ArcGISToolkit
import SwiftUI

struct FloorFilterExampleView: View {
/// Determines the arrangement of the inner `FloorFilter` UI components.
Expand Down
2 changes: 1 addition & 1 deletion Examples/Examples/FlyoverExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS
import ArcGISToolkit
import SwiftUI

struct FlyoverExampleView: View {
@State private var scene = Scene(
Expand Down
2 changes: 1 addition & 1 deletion Examples/Examples/OverviewMapExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS
import ArcGISToolkit
import SwiftUI

struct OverviewMapExampleView: View {
enum MapOrScene {
Expand Down
2 changes: 1 addition & 1 deletion Examples/Examples/PopupExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS
import ArcGISToolkit
import SwiftUI

struct PopupExampleView: View {
static func makeMap() -> Map {
Expand Down
2 changes: 1 addition & 1 deletion Examples/Examples/SearchExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS
import ArcGISToolkit
import SwiftUI

struct SearchExampleView: View {
/// Provides search behavior customization.
Expand Down
2 changes: 1 addition & 1 deletion Examples/Examples/TableTopExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS
import ArcGISToolkit
import SwiftUI

struct TableTopExampleView: View {
@State private var scene: ArcGIS.Scene = {
Expand Down
2 changes: 1 addition & 1 deletion Examples/Examples/WorldScaleExampleView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS
import ArcGISToolkit
import CoreLocation
import SwiftUI

/// An example that utilizes the `WorldScaleSceneView` to show an augmented reality view
/// of your current location. Because this is an example that can be run from anywhere,
Expand Down
2 changes: 1 addition & 1 deletion Examples/ExamplesApp/ExamplesApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS
import SwiftUI

@main
struct ExamplesApp: App {
Expand Down