-
-
Notifications
You must be signed in to change notification settings - Fork 848
/
.swiftlint.yml
55 lines (50 loc) · 986 Bytes
/
.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
disabled_rules:
- force_cast # todo
- type_name # todo
- cyclomatic_complexity # todo
- trailing_whitespace
- opening_brace
- implicit_getter
- redundant_optional_initialization
- large_tuple
- function_body_length
opt_in_rules:
- control_statement
- empty_count
- trailing_newline
- colon
- comma
identifier_name:
min_length: 1
excluded:
- AppUpdateIntervals
- TemperatureUnits
- SpeedBase
- SensorsWidgetMode
- SpeedPictogram
- BatteryAdditionals
- ShortLong
- ReaderUpdateIntervals
- NumbersOfProcesses
- NetworkReaders
- SensorsList
- Alignments
- _devices
- _uuidAddress
- AppleSiliconSensorsList
- FanValues
- CombinedModulesSpacings
- BatteryInfo
- PublicIPAddressRefreshIntervals
- _values
- _writeTS
- LineChartHistory
- SpeedPictogramColor
- SensorsWidgetValue
line_length: 200
type_body_length:
- 700
- 1000
file_length:
- 1400
- 1800