-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.swiftlint.yml
More file actions
33 lines (28 loc) · 1.44 KB
/
.swiftlint.yml
File metadata and controls
33 lines (28 loc) · 1.44 KB
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
# .swiftlint.yml
# ── Paths ──────────────────────────────────────────────────────────────────
included:
- CycleOne
- CycleOneTests
- CycleOneUITests
# ── Rules — disabled ───────────────────────────────────────────────────────
disabled_rules:
- trailing_whitespace
- todo
- opening_brace
- trailing_comma
# ── Rules — opt-in ─────────────────────────────────────────────────────────
opt_in_rules:
- array_init
- closure_spacing
- collection_alignment
- vertical_whitespace_closing_braces
- force_unwrapping
# ── Rule configuration ─────────────────────────────────────────────────────
line_length: 120
# ── Custom rules ───────────────────────────────────────────────────────────
custom_rules:
no_print_in_release:
name: "No print statements"
regex: '^\s*print\('
message: "Use Logger instead of print()."
severity: warning