Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It is possible to ignore some parts of code from a php file when it's analyzed by PHP_CodeSniffer?

share|improve this question

1 Answer

up vote 13 down vote accepted

Yes it is possible with @codingStandardsIgnoreStart and @codingStandardsIgnoreEnd annotations

<?php
some_code();
// @codingStandardsIgnoreStart
this_will_be_ignored();
// @codingStandardsIgnoreEnd
some_other_code();

It is also described in the documentation.

share|improve this answer
Thanks for your answer, this is exactly what I was searching for. – Madalina Nov 30 '10 at 8:57
2  
is it possible to ignore certain rule? – TroodoN-Mike Jul 26 '12 at 15:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.