Pants Python [Pants] 特定の lint のみの実行とスキップ¶ Pants で特定の lint のみをスキップしたい場合、--xxx-skipオプションを使うことで実現できる。 例えば、pylintのみをスキップしたい場合は次のようにする。 1$ pants lint --pylint-skip :: 逆に、特定の lint だけを実行する場合は--lint-only=xxxオプションを使う。 1$ pants lint --lint-only=pylint ::