increase limit of messages per file to 100

This commit is contained in:
Denis Ryabov 2023-09-05 12:12:17 +04:00
parent aac5e96bef
commit 92ba719bd8
1 changed files with 2 additions and 2 deletions

View File

@ -254,8 +254,8 @@ class JedcheckerRulesFramework extends JEDcheckerRule
}
}
// If you scored 10 errors on a single file, that's enough for now.
if ($error_count > 10)
// If you scored 100 errors on a single file, that's enough for now.
if ($error_count > 100)
{
return true;
}