0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHP CodeSnifferでエラーは検出するが警告は黙らせたい場合

Posted at

CIでPHP CodeSnifferでチェックするとき、
エラーは検出したいけど、警告は対象としたくないという場合があるかと思います。
ググったところすぐにやり方が見つからなかったのでここに記しておきます。

いろいろやり方はあるかと思いますが、コマンドのオプションを指定することで解決するやり方を紹介します。
コマンドのオプションに--warning-severityを指定すれば警告を黙らせることができます。

たとえばLine exceeds 120 characters;の警告を対象から外したい場合、

vendor/bin/phpcs --warning-severity=6 --standard=PSR2 ./src

というようにwarning-severityのレベルを6以上を設定すると黙らせることができます。
もちろん警告だけでなくエラーのレベルも--error-severityで指定することができます。

詳しくは 公式のドキュメント をご参照ください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?