Skip to content

Commit 03b1d26

Browse files
committed
Fix lint error
1 parent e22438b commit 03b1d26

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

native/cocos/platform/FileUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ bool FileUtils::removeDirectory(const ccstd::string &path) {
10831083

10841084
if (entry->d_type == DT_DIR) {
10851085
// remove sub directory
1086-
removeDirectory(fullPath);
1086+
removeDirectory(fullPath);// NOLINT(misc-no-recursion)
10871087
} else {
10881088
// remove file
10891089
unlink(fullPath.c_str());

0 commit comments

Comments
 (0)