Files
facebook-ios-sdk/scripts/xcodebuild_warnings_allowlist.py
Jawwad Ahmad 3c55e6fd86 SwiftLint: Enable the prefer_self_in_static_references rule
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
2022-02-07 17:40:53 -08:00

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",
]