We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a91da94 commit 1e387ffCopy full SHA for 1e387ff
plugins/filters/askAI/index.js
@@ -61,7 +61,7 @@ const EXCLUDE_PATTERN = new RegExp(IGNORE_FILES_REGEX_LIST.join('|'));
61
*/
62
const shouldExcludeFile = fileObject => {
63
const shouldExludeByName = EXCLUDE_PATTERN.test(fileObject.original_file);
64
- const shouldExludeBySize = (fileObject.diff?.split(' ').length ?? 0) > 800;
+ const shouldExludeBySize = (fileObject.diff?.split(' ').length ?? 0) > 1000;
65
66
return shouldExludeByName || shouldExludeBySize;
67
};
0 commit comments