Skip to content

Commit e609982

Browse files
mergennachinfacebook-github-bot
authored andcommitted
Fix lint errors
Summary: Fixed two lint errors: - CMake (more than 80 characters per line) - Ignoring objective C in examples (didn't update due to refactoring) #687 Reviewed By: tarun292 Differential Revision: D50059915 fbshipit-source-id: 2a65f8c013c898ac48d5c7a42094943f3b281c34
1 parent ddd1cd7 commit e609982

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.lintrunner.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ exclude_patterns = [
7070
'**/third-party/**',
7171
# NB: Objective-C is not supported
7272
'examples/apple/**',
73-
'examples/ios_demo_apps/**',
73+
'examples/demo-apps/apple_ios/**',
7474
]
7575
command = [
7676
'python',

examples/demo-apps/android/jni/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77

88
cmake_minimum_required(VERSION 3.19)
99

10-
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../../../third-party/fbjni ${CMAKE_CURRENT_BINARY_DIR}/third-party/fbjni)
11-
10+
add_subdirectory(
11+
${CMAKE_CURRENT_SOURCE_DIR}/../../../third-party/fbjni
12+
${CMAKE_CURRENT_BINARY_DIR}/third-party/fbjni)
1213

1314
if(NOT CMAKE_TOOLCHAIN_FILE MATCHES ".*ios\.toolchain\.cmake$")
1415
add_library(executorchdemo SHARED jni_layer.cpp)

0 commit comments

Comments
 (0)