1
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 1 year has passed since last update.

pre-commitにpyrightを追加する

Last updated at Posted at 2022-08-08

はじめに

pre-commit という、gitのpre-commitフックへのスクリプト追加を容易にするツールがある。
最近のPythonツール界隈はだいたいこのpre-commitに対応しているのだが、 Pyright は対応していない。

素直に公式対応してほしいのだけど、erictrautさんが紹介している方法でも実現はできるのでまあそれを使う。

やり方

パッケージマネージャーにpoetryを使っている前提です。

  1. poetry add -D pyright==1.1.265 する

  2. .pre-commit-config.yaml に以下を追加する

    
    repos:
    #...
      - repo: local
        hooks:
          - id: pyright
            name: pyright
            entry: pyright
            language: node
            pass_filenames: true
            types: [python]
            # Replace the version below with the latest pyright version
            additional_dependencies: ['pyright@1.1.265']
    #...
    

pass_filenames はfalseにしているとステージングされたファイルだけでなく、リポジトリー内の全てのファイルを対象にしてしまうので必ずtrueにする。

1
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
1
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?