forked from brave/brave-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.swiftlint.yml
104 lines (101 loc) · 2.69 KB
/
.swiftlint.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
disabled_rules: # rule identifiers to exclude from running
- identifier_name
- todo
- trailing_newline
- type_name
- function_body_length
- missing_docs
- cyclomatic_complexity
- type_body_length
- function_parameter_count
- file_length
- mark
- unused_closure_parameter
- empty_parentheses_with_trailing_closure
- redundant_string_enum_value
- large_tuple
- class_delegate_protocol
- syntactic_sugar
- implicit_getter
- weak_delegate
- shorthand_operator
- trailing_comma
- unused_optional_binding
- private_over_fileprivate
- empty_enum_arguments
- discarded_notification_center_observer
- block_based_kvo
- nesting
- is_disjoint
- multiple_closures_with_trailing_closure
- fallthrough
- switch_case_alignment
- trailing_whitespace
- leading_whitespace
- operator_whitespace
- legacy_cggeometry_functions
- unneeded_break_in_switch
- closure_parameter_position
- inclusive_language
opt_in_rules: # some rules are only opt-in
- closing_brace
- opening_brace
- return_arrow_whitespace
- trailing_semicolon
- statement_position
- explicit_init
- shorthand_operator
# Find all the available rules by running:
# swiftlint rules
included: # paths to include during linting. `--path` is ignored if present.
excluded: # paths to ignore during linting. Takes precedence over `included`.
- Carthage
- Pods
- Source/ExcludedFolder
- Source/ExcludedFile.swift
- ThirdParty
- FxA
- FxAClient
- build
- UITests/EarlGrey.swift
- Tests/
- Sources/Storage/
- UITests/
- XCUITests/
- Sources/BraveSharedTestUtils/
- Sources/DataTestsUtils/
- fastlane/
- Client/Assets/Search/get_supported_locales.swift
- .build
# configurable rules can be customized from this configuration file
# binary rules can set their severity level
trailing_semicolon: error
closing_brace: error
opening_brace: error
return_arrow_whitespace: error
statement_position:
severity: error
colon:
severity: error
comma: error
force_try: warning
force_cast: warning
line_length: 1000
custom_rules:
safe_javascript:
included: ".*\\.swift"
excluded: ".*Test\\.swift"
name: "Safe JavaScript"
regex: "(evaluateJavaScript)\\("
capture_group: 0
message: "Using `evaluateJavaScript` directly is not allowed. Use `evaluateSafeJavaScript` instead."
severity: error
swiftui_previews_guard:
included: ".*\\.swift"
excluded: ".*Test\\.swift"
name: "SwiftUI Previews Guard"
regex: "(?<!#if DEBUG\n)(^struct [^\n:]+: PreviewProvider)"
capture_group: 1
message: "SwiftUI Previews should be enclosed within an #if DEBUG…#endif guard"
severity: error
reporter: "xcode" # reporter type (xcode, json, csv, checkstyle)