コンテンツにスキップ

[Pants] 特定の lint のみの実行とスキップ

Pants で特定の lint のみをスキップしたい場合、--xxx-skipオプションを使うことで実現できる。

例えば、pylintのみをスキップしたい場合は次のようにする。

$ pants lint --pylint-skip ::

逆に、特定の lint だけを実行する場合は--lint-only=xxxオプションを使う。

$ pants lint --lint-only=pylint ::