Skip to content
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
2 changes: 1 addition & 1 deletion .swiftformat
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@
--xcodeindentation disabled

# Disabled rules to avoid conflicts with SwiftLint
--disable wrapMultilineStatementBraces
--disable wrapMultilineStatementBraces,redundantSendable
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ swiftlint --strict
```

### Linting and Formatting
Always run `make lint` before pushing to verify SwiftLint and SwiftFormat checks pass (matches CI). Use `make format` to auto-fix SwiftFormat issues.
Always run `make lint` before pushing to verify SwiftLint and SwiftFormat checks pass. Use `make format` to auto-fix SwiftFormat issues. After lint passes, ask the user to verify tests in Xcode (Cmd+U) before pushing.

### Formatting
```bash
Expand Down
2 changes: 1 addition & 1 deletion NativeAppTemplate/Models/ItemTag.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import Foundation

struct ItemTag: Codable, Hashable, Identifiable {
struct ItemTag: Codable, Hashable, Identifiable, Sendable {
var id: String = ""
var shopId: String = ""
var queueNumber: String = ""
Expand Down
2 changes: 1 addition & 1 deletion NativeAppTemplate/Models/Shop.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import Foundation

struct Shop: Codable, Identifiable {
struct Shop: Codable, Identifiable, Sendable {
var id: String
var name: String
var description: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import struct Foundation.Data
import SwiftyJSON

struct PermissionsResponse {
struct PermissionsResponse: Sendable {
var iosAppVersion: Int
var shouldUpdatePrivacy: Bool
var shouldUpdateTerms: Bool
Expand Down
Loading