We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7daf26b + a2ca886 commit 9775820Copy full SHA for 9775820
lib/linguist/vendor.yml
@@ -195,6 +195,11 @@
195
196
## Obj-C ##
197
198
+# Xcode
199
+
200
+- \.xctemplate/
201
+- \.imageset/
202
203
# Carthage
204
- ^Carthage/
205
test/test_blob.rb
@@ -513,6 +513,11 @@ def test_vendored
513
514
# Crashlytics
515
assert sample_blob("Crashlytics.framework/Crashlytics.h").vendored?
516
517
+ # Xcode
518
+ assert sample_blob("myapp/My Template.xctemplate/___FILEBASENAME___.h").vendored?
519
+ assert sample_blob("myapp/My Images.xcassets/some/stuff.imageset/Contents.json").vendored?
520
+ assert !sample_blob("myapp/MyData.json").vendored?
521
end
522
523
def test_documentation
0 commit comments