31
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-06-09 16:42:22 +00:00

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

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;
}