File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ opt_in_rules:
22 - shorthand_optional_binding
33disabled_rules : # rule identifiers to exclude from running
44 - todo
5- - operator_whitespace
5+ - function_name_whitespace
66 - large_tuple
77 - closure_parameter_position
88 - inclusive_language # sqlite_master etc.
@@ -12,7 +12,7 @@ included: # paths to include during linting. `--path` is ignored if present. tak
1212 - Tests
1313 - Package.swift
1414excluded : # paths to ignore during linting. overridden by `included`.
15- - .build
15+ - " */ .build/* "
1616
1717identifier_name :
1818 excluded :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ IOS_SIMULATOR = iPhone 14
44IOS_VERSION = 16.4
55
66# tool settings
7- SWIFTLINT_VERSION =0.52.2
7+ SWIFTLINT_VERSION =0.63.1
88SWIFTLINT =bin/swiftlint-$(SWIFTLINT_VERSION )
99SWIFTLINT_URL =https://github.com/realm/SwiftLint/releases/download/$(SWIFTLINT_VERSION ) /portable_swiftlint.zip
1010XCBEAUTIFY_VERSION =3.1.2
Original file line number Diff line number Diff line change 2121// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222// THE SOFTWARE.
2323//
24-
25- // TODO: use `@warn_unused_result` by the time operator functions support it
26-
24+ // swiftlint:disable file_length
2725private enum Operator : String , Sendable {
2826 case plus = " + "
2927 case minus = " - "
Original file line number Diff line number Diff line change 2121// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222// THE SOFTWARE.
2323//
24+ // swiftlint:disable file_length
2425import Foundation
2526
2627public protocol QueryType : Expressible {
Original file line number Diff line number Diff line change 1- parent_config : ../.swiftlint.yml
2-
31disabled_rules :
42 - force_cast
53 - force_try
You can’t perform that action at this time.
0 commit comments