-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
176 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--swiftversion 6.0 | ||
|
||
# format options | ||
|
||
--indent 2 | ||
--selfrequired | ||
--importgrouping alpha | ||
--emptybraces "linebreak" | ||
--enable acronyms | ||
--acronyms "URL, ID, UUID" | ||
--enable blankLineAfterImports | ||
--enable blankLinesAroundMark | ||
--enable blockComments | ||
--enable docComments | ||
--enable isEmpty | ||
--enable markTypes | ||
--enable sortSwitchCases | ||
--enable wrapEnumCases | ||
--enable wrapSwitchCases | ||
|
||
--disable wrapMultilineStatementBraces |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
opt_in_rules: | ||
- toggle_bool | ||
- modifier_order | ||
- yoda_condition | ||
- trailing_closure | ||
- vertical_parameter_alignment_on_call | ||
- redundant_nil_coalescing | ||
- prefer_self_type_over_type_of_self | ||
- implicit_return | ||
- empty_string | ||
|
||
disabled_rules: | ||
- trailing_comma | ||
- line_length | ||
- unused_closure_parameter | ||
- multiple_closures_with_trailing_closure | ||
- large_tuple | ||
- todo # This is silly - todos are there for a reason | ||
####################### | ||
## Rule configs | ||
####################### | ||
|
||
force_cast: warning | ||
force_try: warning | ||
|
||
nesting: | ||
type_level: | ||
warning: 4 | ||
|
||
type_name: | ||
allowed_symbols: "_" | ||
|
||
identifier_name: | ||
min_length: | ||
warning: 3 | ||
error: 0 | ||
max_length: | ||
warning: 40 | ||
error: 50 | ||
allowed_symbols: "_" | ||
reporter: "xcode" # reporter type (xcode, json, csv, checkstyle, junit, html, emoji, sonarqube, markdown) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
멤버-개발-폴더/홍승현/pillyze/pillyze/Sources/Scene/Home/HomeView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// HomeView.swift | ||
// pillyze | ||
// | ||
// Created by 홍승현 on 7/15/24. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct HomeView: View { | ||
var body: some View { | ||
ZStack { | ||
ScrollView { | ||
} | ||
} | ||
} | ||
} | ||
|
||
#Preview { | ||
HomeView() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
// | ||
// pillyzeTests.swift | ||
// PillyzeTests.swift | ||
// pillyzeTests | ||
// | ||
// Created by 홍승현 on 7/12/24. | ||
// | ||
|
||
import Testing | ||
@testable import pillyze | ||
import Testing | ||
|
||
struct pillyzeTests { | ||
struct PillyzeTests { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
멤버-개발-폴더/홍승현/pillyze/pillyzeUITests/pillyzeUITestsLaunchTests.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters