From 882759b6fa523e2eb0a375554037c3a954b6cb1d Mon Sep 17 00:00:00 2001 From: Maxim Sorokin Date: Wed, 8 Apr 2020 20:40:46 +0300 Subject: [PATCH] added new swiftlint rules --- xcode/.swiftlint.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/xcode/.swiftlint.yml b/xcode/.swiftlint.yml index 03d9b04..c61442e 100644 --- a/xcode/.swiftlint.yml +++ b/xcode/.swiftlint.yml @@ -236,9 +236,3 @@ custom_rules: regex: "(== true)|(== false)|(!= true)|(!= false)" message: "Comparing a boolean to true is redundant (use `?? false` for optionals), and `!`-syntax is preferred over comparing to false." severity: error - - closing_brace_vertical_spacing: - name: "Closing Brace Vertical Spacing" - regex: "\\n{2,}\\}" - message: "Closing braces should not be followed by a new line before another closing brace." - severity: error