-
Notifications
You must be signed in to change notification settings - Fork 1
/
.liftoffrc
89 lines (81 loc) · 2.25 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
############################################################################
# The following keys can be used to configure defaults for project creation
# project_name:
company: Maximelc
author: Maxime LE COAT
# prefix:
company_identifier: fr.maximelc
############################################################################
test_target_name: UnitTests
configure_git: false
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: 9.0
run_script_phases:
- file: todo.sh
name: Warn for TODO and FIXME comments
- file: bundle_version.sh
name: Set version number
templates:
- 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:
swift:
- <%= project_name %>:
- Models:
- Common:
- Constants.swift
- Environement.swift
- Extensions.swift
- Controllers:
- AppDelegate.swift
- Home:
- Views:
- Nibs:
- Storyboards:
- Main.storyboard
- Supporting Files:
- Info.plist
- Settings.bundle
- LaunchScreen.storyboard
- Resources:
- Assets.xcassets
test_target_templates:
swift:
- <%= test_target_name %>:
- Resources:
- <%= test_target_name %>-Info.plist
- Helpers:
- Tests: