Como ignorar o comprimento da linha PHP_CodeSniffer

Estive usando PHP_CodeSniffer com jenkins, meu build.xml foi configurado para phpcs como abaixo

<target name="phpcs">
    <exec executable="phpcs">
        <arg line="--report=checkstyle --report-file=${basedir}/build/logs/checkstyle.xml --standard=Zend ${source}"/>
    </exec>
</target> 

E gostaria de ignorar o seguinte aviso

FOUND 0 ERROR(S) AND 1 WARNING(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
 117 | WARNING | Line exceeds 80 characters; contains 85 characters
--------------------------------------------------------------------------------

Como eu poderia ignorar o aviso de comprimento de linha?

questionAnswers(4)

yourAnswerToTheQuestion