1
- # Xcode
2
- #
3
- # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4
-
5
- # # User settings
6
- xcuserdata /
7
-
8
- # # compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
9
- * .xcscmblueprint
10
- * .xccheckout
11
-
12
- # # compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13
- build /
14
- DerivedData /
15
- * .moved-aside
16
- * .pbxuser
17
- ! default.pbxuser
18
- * .mode1v3
19
- ! default.mode1v3
20
- * .mode2v3
21
- ! default.mode2v3
22
- * .perspectivev3
23
- ! default.perspectivev3
24
-
25
- # # Obj-C/Swift specific
26
- * .hmap
27
-
28
- # # App packaging
29
- * .ipa
30
- * .dSYM.zip
31
- * .dSYM
32
-
33
- # CocoaPods
34
- #
35
- # We recommend against adding the Pods directory to your .gitignore. However
36
- # you should judge for yourself, the pros and cons are mentioned at:
37
- # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
38
- #
39
- # Pods/
40
- #
41
- # Add this line if you want to avoid checking in source code from the Xcode workspace
42
- # *.xcworkspace
43
-
44
- # Carthage
45
- #
46
- # Add this line if you want to avoid checking in source code from Carthage dependencies.
47
- # Carthage/Checkouts
48
-
49
- Carthage /Build /
50
-
51
- # fastlane
52
- #
53
- # It is recommended to not store the screenshots in the git repo.
54
- # Instead, use fastlane to re-generate the screenshots whenever they are needed.
55
- # For more information about the recommended setup visit:
56
- # https://docs.fastlane.tools/best-practices/source-control/#source-control
57
-
58
- fastlane /report.xml
59
- fastlane /Preview.html
60
- fastlane /screenshots /** /* .png
61
- fastlane /test_output
62
-
63
- # Code Injection
64
- #
65
- # After new code Injection tools there's a generated folder /iOSInjectionProject
66
- # https://github.com/johnno1962/injectionforxcode
67
-
68
- iOSInjectionProject /
1
+ # ## C ###
2
+ # Prerequisites
3
+ * .d
4
+
5
+ # Object files
6
+ * .o
7
+ * .ko
8
+ * .obj
9
+ * .elf
10
+
11
+ # Linker output
12
+ * .ilk
13
+ * .map
14
+ * .exp
15
+
16
+ # Precompiled Headers
17
+ * .gch
18
+ * .pch
19
+
20
+ # Libraries
21
+ * .lib
22
+ * .a
23
+ * .la
24
+ * .lo
25
+
26
+ # Shared objects (inc. Windows DLLs)
27
+ * .dll
28
+ * .so
29
+ * .so. *
30
+ * .dylib
31
+
32
+ # Executables
33
+ * .out
34
+
35
+ # Debug files
36
+ * .dSYM /
37
+
38
+ # ## Linux ###
39
+ * ~
40
+
41
+ # temporary files which can be created if a process still has a handle open of a deleted file
42
+ .fuse_hidden *
43
+
44
+ # KDE directory preferences
45
+ .directory
46
+
47
+ # Linux trash folder which might appear on any partition or disk
48
+ .Trash- *
49
+
50
+ # .nfs files are created when an open file is removed but is still being accessed
51
+ .nfs *
52
+
53
+ # ## macOS ###
54
+ # General
55
+ .DS_Store
56
+ .AppleDouble
57
+ .LSOverride
58
+
59
+ # Icon must end with two \r
60
+ Icon
61
+
62
+
63
+ # Thumbnails
64
+ ._ *
65
+
66
+ # Files that might appear in the root of a volume
67
+ .DocumentRevisions-V100
68
+ .fseventsd
69
+ .Spotlight-V100
70
+ .TemporaryItems
71
+ .Trashes
72
+ .VolumeIcon.icns
73
+ .com.apple.timemachine.donotpresent
74
+
75
+ # Directories potentially created on remote AFP share
76
+ .AppleDB
77
+ .AppleDesktop
78
+ Network Trash Folder
79
+ Temporary Items
80
+ .apdisk
81
+
82
+ # ## macOS Patch ###
83
+ # iCloud generated files
84
+ * .icloud
85
+
86
+ # ## Vim ###
87
+ # Swap
88
+ [._ ]* .s [a-v ][a-z ]
89
+ ! * .svg # comment out if you don't need vector files
90
+ [._ ]* .sw [a-p ]
91
+ [._ ]s [a-rt-v ][a-z ]
92
+ [._ ]ss [a-gi-z ]
93
+ [._ ]sw [a-p ]
94
+
95
+ # Session
96
+ Session.vim
97
+ Sessionx.vim
98
+
99
+ # Temporary
100
+ .netrwhist
101
+ # Auto-generated tag files
102
+ tags
103
+ # Persistent undo
104
+ [._ ]* .un~
105
+
106
+ # ## Meson ###
107
+ # subproject directories
108
+ /subprojects /*
109
+ ! /subprojects /* .wrap
110
+
111
+ # Meson Directories
112
+ meson-logs
113
+ meson-private
114
+
115
+ # Meson Files
116
+ meson_benchmark_setup.dat
117
+ meson_test_setup.dat
118
+ sanitycheckcpp.cc # C++ specific
119
+ sanitycheckcpp.exe # C++ specific
120
+
121
+ # Ninja
122
+ build.ninja
123
+ .ninja_deps
124
+ .ninja_logs
125
+
126
+ # Misc
127
+ compile_commands.json
128
+
129
+
130
+ # ## VisualStudioCode ###
131
+ .vscode /*
132
+ ! .vscode /settings.json
133
+ ! .vscode /tasks.json
134
+ ! .vscode /launch.json
135
+ ! .vscode /extensions.json
136
+ ! .vscode /* .code-snippets
137
+
138
+ # Local History for Visual Studio Code
139
+ .history /
140
+
141
+ # Built Visual Studio Code Extensions
142
+ * .vsix
143
+
144
+ # ## VisualStudioCode Patch ###
145
+ # Ignore all local history of files
146
+ .history
147
+ .ionide
148
+
149
+ # objc-boilerplate
150
+ build /
0 commit comments