forked from realm/realm-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.swiftlint.yml
43 lines (43 loc) · 1.11 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
included:
- Realm/ObjectServerTests
- RealmSwift
- Realm/Swift
- examples/installation/watchos/swift
- examples/installation/osx/swift
- examples/installation/ios/swift
- examples/ios/swift
- examples/tvos/swift
identifier_name:
min_length: # not possible to disable this partial rule, so set it to zero
warning: 0
error: 0
excluded:
- _nilValue()
- _nsError
- _nsErrorDomain
- _observe(_:)
- _realmColumnNames()
- _realmObjectName()
- _rlmArray()
- id
- pk
- to
disabled_rules:
- block_based_kvo
# SwiftLint considers 'Realm' and 'Realm.Private' to be duplicate imports
# because we're using submodules in an unsual way, and normally the parent
# module re-exports all of its children.
- duplicate_imports
- file_length
- force_cast
- force_try
- function_body_length
- line_length
- nesting
- syntactic_sugar
- todo
- type_body_length
- vertical_whitespace
# swiftlint complains about superfluous disable commands when the violation
# occurs in an inactive #if and doesn't support conditionally disabling it
- cyclomatic_complexity