Relax long lines requirement
For methods signature in PHP (and so probably in Rust), a 82 characters line
is easier to read than a 4 lines signature:
public static function registerPSR4 (string $namespace, string $path) : void { doSomething(); }
vs
public static function registerPSR4 ( string $namespace, string $path ) : void { doSomething(); }
As such, we set an hard limit to 120 characters and 80 becomes a soft limit.