mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-19 15:28:54 +00:00
Summary: project: - fix file target membership issues in framework targets and test targets - fix private/internal header imports, which shouldn't be `<IGListKit/` apparently - fix static analyzer errors travis: - always install latest swiftlint - ~~don't cache bundler, attempts to fix #1060~~ - remove markdown link check swiftlint: - make script non-failing if *any* version of swiftlint is installed - warning if incorrect version is installed - fail if not installed - remove `scripts/generate_ci_yaml.rb`, we can just set the config file path directly Closes https://github.com/Instagram/IGListKit/pull/1068 Differential Revision: D6885575 Pulled By: rnystrom fbshipit-source-id: 51b7baa73feefcea71d870c1220d0382df484199
70 lines
2.5 KiB
Objective-C
70 lines
2.5 KiB
Objective-C
/**
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <IGListKit/IGListCompatibility.h>
|
|
|
|
/**
|
|
* Project version number for IGListKit.
|
|
*/
|
|
FOUNDATION_EXPORT double IGListKitVersionNumber;
|
|
|
|
/**
|
|
* Project version string for IGListKit.
|
|
*/
|
|
FOUNDATION_EXPORT const unsigned char IGListKitVersionString[];
|
|
|
|
#if TARGET_OS_EMBEDDED || TARGET_OS_SIMULATOR
|
|
|
|
// iOS and tvOS only:
|
|
|
|
#import <IGListKit/IGListAdapter.h>
|
|
#import <IGListKit/IGListAdapterDataSource.h>
|
|
#import <IGListKit/IGListAdapterDelegate.h>
|
|
#import <IGListKit/IGListAdapterUpdateListener.h>
|
|
#import <IGListKit/IGListAdapterUpdater.h>
|
|
#import <IGListKit/IGListAdapterUpdaterDelegate.h>
|
|
#import <IGListKit/IGListBatchContext.h>
|
|
#import <IGListKit/IGListBindable.h>
|
|
#import <IGListKit/IGListBindable.h>
|
|
#import <IGListKit/IGListBindingSectionController.h>
|
|
#import <IGListKit/IGListBindingSectionControllerDataSource.h>
|
|
#import <IGListKit/IGListBindingSectionControllerSelectionDelegate.h>
|
|
#import <IGListKit/IGListCollectionContext.h>
|
|
#import <IGListKit/IGListCollectionView.h>
|
|
#import <IGListKit/IGListCollectionViewLayout.h>
|
|
#import <IGListKit/IGListDisplayDelegate.h>
|
|
#import <IGListKit/IGListExperiments.h>
|
|
#import <IGListKit/IGListGenericSectionController.h>
|
|
#import <IGListKit/IGListCollectionViewDelegateLayout.h>
|
|
#import <IGListKit/IGListReloadDataUpdater.h>
|
|
#import <IGListKit/IGListScrollDelegate.h>
|
|
#import <IGListKit/IGListSectionController.h>
|
|
#import <IGListKit/IGListSingleSectionController.h>
|
|
#import <IGListKit/IGListStackedSectionController.h>
|
|
#import <IGListKit/IGListSupplementaryViewSource.h>
|
|
#import <IGListKit/IGListTransitionDelegate.h>
|
|
#import <IGListKit/IGListUpdatingDelegate.h>
|
|
#import <IGListKit/IGListWorkingRangeDelegate.h>
|
|
#import <IGListKit/IGListCollectionViewDelegateLayout.h>
|
|
|
|
#endif
|
|
|
|
// Shared (iOS, tvOS, macOS compatible):
|
|
|
|
#import <IGListKit/IGListAssert.h>
|
|
#import <IGListKit/IGListBatchUpdateData.h>
|
|
#import <IGListKit/IGListDiff.h>
|
|
#import <IGListKit/IGListDiffable.h>
|
|
#import <IGListKit/IGListExperiments.h>
|
|
#import <IGListKit/IGListIndexPathResult.h>
|
|
#import <IGListKit/IGListIndexSetResult.h>
|
|
#import <IGListKit/IGListMoveIndex.h>
|
|
#import <IGListKit/IGListMoveIndexPath.h>
|
|
#import <IGListKit/NSNumber+IGListDiffable.h>
|
|
#import <IGListKit/NSString+IGListDiffable.h>
|