Skip to content

Commit

Permalink
test github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ffalswo2 committed Dec 7, 2023
1 parent 45171f9 commit fb4aa25
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
43 changes: 43 additions & 0 deletions SOPT-32st-Assignment/.swiftlint
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
disabled_rules: # 실행에서 제외할 룰 식별자들
- colon
- comma
- control_statement
opt_in_rules: # 일부 룰은 옵트 인 형태로 제공
- empty_count
- missing_docs
# 사용 가능한 모든 룰은 swiftlint rules 명령으로 확인 가능
included: # 린트 과정에 포함할 파일 경로. 이 항목이 존재하면 `--path`는 무시됨
- SOPT-32st-Assignment
# excluded: # 린트 과정에서 무시할 파일 경로. `included`보다 우선순위 높음

# 설정 가능한 룰은 이 설정 파일에서 커스터마이징 가능
# 경고나 에러 중 하나를 발생시키는 룰은 위반 수준을 설정 가능
force_cast: warning # 암시적으로 지정
force_try:
severity: warning # 명시적으로 지정
# 경고 및 에러 둘 다 존재하는 룰의 경우 값을 하나만 지정하면 암시적으로 경고 수준에 설정됨
line_length: 110
# 값을 나열해서 암시적으로 양쪽 다 지정할 수 있음
type_body_length:
- 300 # 경고
- 400 # 에러
# 둘 다 명시적으로 지정할 수도 있음
file_length:
warning: 500
error: 1200
# 네이밍 룰은 경고/에러에 min_length와 max_length를 각각 설정 가능
# 제외할 이름을 설정할 수 있음
type_name:
min_length: 4 # 경고에만 적용됨
max_length: # 경고와 에러 둘 다 적용
warning: 40
error: 50
excluded: iPhone # 제외할 문자열 값 사용
identifier_name:
min_length: # min_length에서
error: 4 # 에러만 적용
excluded: # 제외할 문자열 목록 사용
- id
- URL
- GlobalAPIKey
reporter: "github-actions-logging" # 보고 유형 (xcode, json, csv, codeclimate, checkstyle, junit, html, emoji, sonarqube, markdown, github-actions-logging)
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
B598C03E29DF52D900FDEF04 /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B598C03D29DF52D900FDEF04 /* Observable.swift */; };
B598C04129DF58A000FDEF04 /* firstViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B598C04029DF58A000FDEF04 /* firstViewModel.swift */; };
B598C04629DF6FEF00FDEF04 /* ModuleFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = B598C04529DF6FEF00FDEF04 /* ModuleFactory.swift */; };
B5ACF6DE2B2188B2006D7641 /* .swiftlint in Resources */ = {isa = PBXBuildFile; fileRef = B5ACF6DD2B2188B2006D7641 /* .swiftlint */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -30,6 +31,7 @@
B598C03D29DF52D900FDEF04 /* Observable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Observable.swift; sourceTree = "<group>"; };
B598C04029DF58A000FDEF04 /* firstViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = firstViewModel.swift; sourceTree = "<group>"; };
B598C04529DF6FEF00FDEF04 /* ModuleFactory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ModuleFactory.swift; sourceTree = "<group>"; };
B5ACF6DD2B2188B2006D7641 /* .swiftlint */ = {isa = PBXFileReference; lastKnownFileType = text; path = .swiftlint; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand All @@ -46,6 +48,7 @@
B598C01B29DF4D8200FDEF04 = {
isa = PBXGroup;
children = (
B5ACF6DD2B2188B2006D7641 /* .swiftlint */,
B598C02629DF4D8200FDEF04 /* SOPT-32st-Assignment */,
B598C02529DF4D8200FDEF04 /* Products */,
);
Expand Down Expand Up @@ -182,6 +185,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B5ACF6DE2B2188B2006D7641 /* .swiftlint in Resources */,
B598C03429DF4D8400FDEF04 /* LaunchScreen.storyboard in Resources */,
B598C03129DF4D8400FDEF04 /* Assets.xcassets in Resources */,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
final class SecondViewController: UIViewController {

// MARK: - Properties
private var name = ""
private var name = "minjae"

// MARK: - UI Components

Expand Down

0 comments on commit fb4aa25

Please sign in to comment.