mirror of
https://github.com/zhigang1992/facebook-ios-sdk.git
synced 2026-01-12 17:22:28 +08:00
Summary: This rule supports autocorrect so ran `swiftlint --fix` to fix existing violations of this rule Reviewed By: samodom Differential Revision: D34051920 fbshipit-source-id: 48e337cddb504304d3e04e86ec11972dc119df11
18 lines
1.0 KiB
Python
18 lines
1.0 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
XCODEBUILD_WARNINGS_ALLOWLIST = [
|
|
"warning: Input PNG is already optimized for iPhone OS. Copying source file to destination...",
|
|
# Pika Warnings:
|
|
# "warning: failed to load toolchain: could not find Info.plist in /Users/facebook/Library/Developer/Toolchains/pika-11-macos-noasserts.xctoolchain",
|
|
# "warning: failed to load toolchain: could not find Info.plist in /Users/facebook/Library/Developer/Toolchains/pika-13-macos-noasserts.xctoolchain",
|
|
"warning: failed to load toolchain: could not find Info.plist in /Users/facebook/Library/Developer/Toolchains/pika-",
|
|
# Deprecation Warnings:
|
|
"is deprecated and will be removed in the next major release",
|
|
"warning: Building targets in manual order is deprecated",
|
|
"warning: 'prefer_self_in_static_references' is not a valid rule identifier",
|
|
]
|