Skip to content

Commit 1e387ff

Browse files
authored
increase file diff from 800 to 1000
1 parent a91da94 commit 1e387ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/filters/askAI/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const EXCLUDE_PATTERN = new RegExp(IGNORE_FILES_REGEX_LIST.join('|'));
6161
*/
6262
const shouldExcludeFile = fileObject => {
6363
const shouldExludeByName = EXCLUDE_PATTERN.test(fileObject.original_file);
64-
const shouldExludeBySize = (fileObject.diff?.split(' ').length ?? 0) > 800;
64+
const shouldExludeBySize = (fileObject.diff?.split(' ').length ?? 0) > 1000;
6565

6666
return shouldExludeByName || shouldExludeBySize;
6767
};

0 commit comments

Comments
 (0)