forked from pxpgraphics/XcodeIssueGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.swiftlint.yml
More file actions
39 lines (39 loc) · 929 Bytes
/
.swiftlint.yml
File metadata and controls
39 lines (39 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
opt_in_rules:
- force_unwrapping
- empty_count
- missing_docs
disabled_rules:
# - closing_brace
# - colon
# - comma
# - conditional_binding_cascade
# - control_statement
# - custom_rules
- cyclomatic_complexity
# - file_length
# - missing_docs
# - force_cast
# - force_try
# - function_body_length
# - function_parameter_count
# - leading_whitespace
# - legacy_cggeometry_functions
# - legacy_constant
# - legacy_constructor
- line_length
# - nesting
# - opening_brace
# - operator_whitespace
# - return_arrow_whitespace
# - statement_position
- todo
# - trailing_newline
# - trailing_semicolon
# - trailing_whitespace
# - type_body_length
- type_name
# - valid_docs
# - variable_name
excluded: # paths to ignore during linting. Takes precedence over `included`.
- XcodeIssueGeneratorTests
reporter: "xcode" # reporter type (xcode, json, csv, checkstyle)