diff --git a/fub-standard.ini b/fub-standard.ini index f1f4631..28146ad 100644 --- a/fub-standard.ini +++ b/fub-standard.ini @@ -20,11 +20,6 @@ additional_rules = rules ;[NoEolAtEofRule] [NoTrailingWhitespaceRule] -; With multibyte enabled here, requires to have -; either the `intl` or `mbstring` extension installed. -[MaximumLineLengthRule] -line_length = 122 -multibyte = true ;[NotExecutableRule] ; PHP tags @@ -108,3 +103,11 @@ skip=extensions/command/Misc.php, extensions/command/Leads.php, extensions/comma ; which are propertly handled by a try/catch or other means. This is not ; something a modern PHP developer needs to be warning about by the linter. ; [NoShutupOperatorsRule] + +; NOTE: occassionally it is useful to link to a reference in a comment, which can mean +; including a long-ish URL which cannot be easily broken up into multiple lines. +; In general, we nowadays let prettier handle formatting, so this rule isn't needed +; for most of our PHP source code. +; [MaximumLineLengthRule] +; line_length = 122 +; multibyte = true