-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.swiftlint.yml
44 lines (38 loc) · 1.13 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
disabled_rules:
- cyclomatic_complexity
- large_tuple
- comment_spacing
opt_in_rules:
- file_header
line_length:
warning: 180
error: 350
ignores_comments: true
ignores_urls: true
identifier_name:
allowed_symbols: "_"
min_length: 2
max_length:
warning: 80
error: 160
excluded:
- id
- _fetchedResultsController
- _tabBarController
nesting:
type_level: 2
excluded:
- Pods
file_header:
required_pattern: |
\/\/
\/\/ SWIFTLINT_CURRENT_FILENAME
\/\/ HackIllinois
\/\/
\/\/ Created by HackIllinois Team on \d{1,2}\/\d{1,2}\/\d{2}\.
\/\/ Copyright © \d{4} HackIllinois\. All rights reserved\.
\/\/ This file is part of the Hackillinois iOS App.
\/\/ The Hackillinois iOS App is open source software, released under the University of
\/\/ Illinois/NCSA Open Source License. You should have received a copy of
\/\/ this license in a file with the distribution.
\/\/