Skip to content

Commit 002dcaf

Browse files
committed
fix: tuist configure
1 parent c1e89b1 commit 002dcaf

File tree

3 files changed

+119
-3
lines changed

3 files changed

+119
-3
lines changed

.swiftlint.yml

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
excluded:
2+
- ${PWD}/Carthage
3+
- ${PWD}/Pods
4+
- ${PWD}/DerivedData
5+
- Tuist
6+
- Frameworks
7+
- Project
8+
- ./**/*API.swift
9+
- ./**/AppDelegate.swift
10+
- ./**/SceneDelegate.swift
11+
- Plugins
12+
- Project.swift
13+
14+
disabled_rules:
15+
- discarded_notification_center_observer
16+
- notification_center_detachment
17+
- orphaned_doc_comment
18+
- todo
19+
- unused_capture_list
20+
21+
opt_in_rules:
22+
- array_init
23+
- attributes
24+
- closure_end_indentation
25+
- closure_spacing
26+
- collection_alignment
27+
- colon # promote to error
28+
- convenience_type
29+
- discouraged_object_literal
30+
- empty_collection_literal
31+
- empty_count
32+
- empty_string
33+
- enum_case_associated_values_count
34+
- fatal_error_message
35+
- first_where
36+
- force_unwrapping
37+
- implicitly_unwrapped_optional
38+
- indentation_width
39+
- last_where
40+
- legacy_random
41+
- literal_expression_end_indentation
42+
- multiline_arguments
43+
- multiline_function_chains
44+
- multiline_literal_brackets
45+
- multiline_parameters
46+
- multiline_parameters_brackets
47+
- operator_usage_whitespace
48+
- overridden_super_call
49+
- pattern_matching_keywords
50+
- prefer_self_type_over_type_of_self
51+
- redundant_nil_coalescing
52+
- redundant_type_annotation
53+
- strict_fileprivate
54+
- toggle_bool
55+
- trailing_closure
56+
- unneeded_parentheses_in_closure_argument
57+
- unused_import
58+
- vertical_whitespace_closing_braces
59+
- vertical_whitespace_opening_braces
60+
- yoda_condition
61+
62+
63+
custom_rules:
64+
array_constructor:
65+
name: "Array/Dictionary initializer"
66+
regex: '[let,var] .+ = (\[.+\]\(\))'
67+
capture_group: 1
68+
message: "Use explicit type annotation when initializing empty arrays and dictionaries"
69+
severity: warning
70+
71+
72+
attributes:
73+
always_on_same_line:
74+
- "@IBSegueAction"
75+
- "@IBAction"
76+
- "@NSManaged"
77+
- "@objc"
78+
79+
force_cast: warning
80+
force_try: warning
81+
function_body_length:
82+
warning: 60
83+
84+
legacy_hashing: error
85+
86+
identifier_name:
87+
excluded:
88+
- i
89+
- id
90+
- x
91+
- y
92+
- z
93+
94+
indentation_width:
95+
indentation_width: 2
96+
97+
line_length:
98+
ignores_urls: true
99+
ignores_function_declarations: true
100+
ignores_comments: true
101+
102+
multiline_arguments:
103+
first_argument_location: next_line
104+
only_enforce_after_first_closure_on_first_line: true
105+
106+
private_over_fileprivate:
107+
validate_extensions: true
108+
109+
trailing_whitespace:
110+
ignores_empty_lines: false
111+
ignores_comments: true
112+
113+
vertical_whitespace:
114+
max_empty_lines: 2

Scripts/SwiftLintRunScript.sh

100644100755
File mode changed.

Tuist/ProjectDescriptionHelpers/Project+Templates.swift

+5-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ extension Project {
2626
product: .framework,
2727
bundleId: "com.tnzkm.\(name)",
2828
infoPlist: .default,
29-
sources: ["Targets/\(name)/Sources/**"],
29+
sources: ["\(name)/Sources/**"],
3030
resources: [],
31+
scripts: [.pre(path: "Scripts/SwiftLintRunScript.sh", arguments: [], name: "SwiftLint")],
3132
dependencies: [])
3233
// let tests = Target(name: "\(name)Tests",
3334
// platform: platform,
@@ -56,8 +57,9 @@ extension Project {
5657
product: .app,
5758
bundleId: "com.tnzkm.\(name)",
5859
infoPlist: .extendingDefault(with: infoPlist),
59-
sources: ["Targets/\(name)/Sources/**"],
60-
resources: ["Targets/\(name)/Resources/**"],
60+
sources: ["\(name)/Sources/**"],
61+
resources: ["\(name)/Resources/**"],
62+
scripts: [.pre(path: "Scripts/SwiftLintRunScript.sh", arguments: [], name: "SwiftLint")],
6163
dependencies: dependencies
6264
)
6365

0 commit comments

Comments
 (0)