Guest User

Untitled

a guest
Jun 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. excluded:
  2. - Carthage
  3. - Pods
  4.  
  5. opt_in_rules:
  6. - closure_end_indentation
  7. - closure_spacing
  8. - conditional_returns_on_newline
  9. - contains_over_first_not_nil
  10. - empty_count
  11. - empty_string
  12. - explicit_init
  13. - fallthrough
  14. - first_where
  15. - force_unwrapping
  16. - implicitly_unwrapped_optional
  17. - let_var_whitespace
  18. - literal_expression_end_indentation
  19. - multiline_parameters
  20. - nimble_operator
  21. - operator_usage_whitespace
  22. - overridden_super_call
  23. - prefixed_toplevel_constant
  24. - private_action
  25. - private_outlet
  26. - prohibited_super_call
  27. - redundant_nil_coalescing
  28. - required_enum_case
  29. - single_test_class
  30. - sorted_first_last
  31. - trailing_closure
  32. - unneeded_parentheses_in_closure_argument
  33. - untyped_error_in_catch
  34. - yoda_condition
  35.  
  36. identifier_name:
  37. min_length: 2
  38.  
  39. trailing_whitespace:
  40. ignores_empty_lines: true
  41.  
  42. colon:
  43. flexible_right_spacing: false
  44. severity: error
  45.  
  46. cyclomatic_complexity: 15
  47.  
  48. file_length:
  49. - 1000
  50. - 1000
  51.  
  52. line_length: 200
  53.  
  54. overridden_super_call:
  55. severity: error
  56.  
  57. prohibited_super_call:
  58. severity: error
  59.  
  60. force_unwrapping:
  61. severity: error
  62.  
  63. implicitly_unwrapped_optional:
  64. severity: error
  65.  
  66. type_body_length: 300
  67.  
  68. function_body_length: 50
Add Comment
Please, Sign In to add comment