From 1d24e9e4813191ec6f9f19a7880122b329380467 Mon Sep 17 00:00:00 2001 From: Levi Eggert Date: Mon, 15 Jul 2024 14:55:04 -0400 Subject: [PATCH] Disable trailing white space Set line length to 500 --- .swiftlint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.swiftlint.yml b/.swiftlint.yml index 5b70df917c..a5310ecd0f 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -1,5 +1,6 @@ # By default, SwiftLint uses a set of sensible default rules you can adjust: disabled_rules: # rule identifiers turned on by default to exclude from running + - trailing_whitespace # disabling for now as this touches a lot of files. Command swiftlint --fix is a way to fix whitespace. opt_in_rules: # some rules are turned off by default, so you need to opt-in - closure_end_indentation - closure_spacing @@ -98,7 +99,7 @@ force_try: severity: warning # explicitly # rules that have both warning and error levels, can set just the warning level # implicitly -line_length: 110 +line_length: 500 # they can set both implicitly with an array type_body_length: - 300 # warning