From b1f5c7e96641a6c0317877a7f7a922cfb1f8d5db Mon Sep 17 00:00:00 2001 From: Yurii Samsoniuk Date: Thu, 22 Dec 2016 21:59:15 +0100 Subject: [PATCH] Added SwiftLint config and hound config. --- .hound.yml | 2 ++ .swiftlint.yml | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .hound.yml create mode 100644 .swiftlint.yml diff --git a/.hound.yml b/.hound.yml new file mode 100644 index 000000000..b867fd9c3 --- /dev/null +++ b/.hound.yml @@ -0,0 +1,2 @@ +swift: + config_file: .swiftlint.yml diff --git a/.swiftlint.yml b/.swiftlint.yml new file mode 100644 index 000000000..3f7800160 --- /dev/null +++ b/.swiftlint.yml @@ -0,0 +1,19 @@ +disabled_rules: + - line_length + - trailing_comma + - operator_whitespace + - syntactic_sugar + - todo + - nesting + - variable_name + - empty_parentheses_with_trailing_closure + - control_statement + - force_try + - function_parameter_count + - closure_parameter_position + - force_cast + - type_name + +included: + - Sources + - Tests