-
Notifications
You must be signed in to change notification settings - Fork 105
/
liftoffrc
117 lines (109 loc) · 2.85 KB
/
liftoffrc
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
############################################################################
# The following keys can be used to configure defaults for project creation
# project_name:
# company:
# author:
# prefix:
# company_identifier:
############################################################################
test_target_name: UnitTests
configure_git: true
warnings_as_errors: true
enable_static_analyzer: true
indentation_level: 4
use_tabs: false
dependency_managers: cocoapods
enable_settings: true
strict_prompts: false
deployment_target: 8.0
swift_version: 4.0
run_script_phases:
- file: todo.sh
name: Warn for TODO and FIXME comments
- file: bundle_version.sh
name: Set version number
templates:
- travis.yml: .travis.yml
- test.sh: bin/test
- setup.sh: bin/setup
- README.md: README.md
warnings:
- GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED
- GCC_WARN_MISSING_PARENTHESES
- GCC_WARN_ABOUT_RETURN_TYPE
- GCC_WARN_SIGN_COMPARE
- GCC_WARN_CHECK_SWITCH_STATEMENTS
- GCC_WARN_UNUSED_FUNCTION
- GCC_WARN_UNUSED_LABEL
- GCC_WARN_UNUSED_VALUE
- GCC_WARN_UNUSED_VARIABLE
- GCC_WARN_SHADOW
- GCC_WARN_64_TO_32_BIT_CONVERSION
- GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS
- GCC_WARN_ABOUT_MISSING_NEWLINE
- GCC_WARN_UNDECLARED_SELECTOR
- GCC_WARN_TYPECHECK_CALLS_TO_PRINTF
- GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF
- CLANG_WARN_IMPLICIT_SIGN_CONVERSION
- CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION
- CLANG_WARN_EMPTY_BODY
- CLANG_WARN_ENUM_CONVERSION
- CLANG_WARN_INT_CONVERSION
- CLANG_WARN_CONSTANT_CONVERSION
xcode_command: open -a 'Xcode' .
project_template: swift
app_target_templates:
objc:
- <%= project_name %>:
- Categories:
- Protocols:
- Headers:
- Models:
- ViewModels:
- Controllers:
- <%= prefix %>AppDelegate.h
- <%= prefix %>AppDelegate.m
- Views:
- Resources:
- Images.xcassets
- Storyboards:
- Main.storyboard
- Nibs:
- LaunchScreen.xib
- Other-Sources:
- Info.plist
- <%= project_name %>-Prefix.pch
- main.m
swift:
- <%= project_name %>:
- Extensions:
- Protocols:
- Models:
- ViewModels:
- Controllers:
- AppDelegate.swift
- Views:
- Resources:
- Images.xcassets
- Storyboards:
- Main.storyboard
- Nibs:
- LaunchScreen.xib
- Other-Sources:
- Info.plist
test_target_templates:
objc:
- <%= test_target_name %>:
- Resources:
- <%= test_target_name %>-Info.plist
- <%= test_target_name %>-Prefix.pch
- Helpers:
- Tests:
swift:
- <%= test_target_name %>:
- Resources:
- <%= test_target_name %>-Info.plist
- Helpers:
- Tests: