We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
参考: https://matklad.github.io/2024/03/22/basic-things.html#Build-CI 読み物(読まなくていい): The Not Rocket Science Rule
main にマージするときの確認事項:
pyright
ruff check
ruff format --diff
JUST_UNSTABLE=1 just --fmt --check
定期的にチェックしたい事項:
uv sync --locked
The text was updated successfully, but these errors were encountered:
anext を使うためには requires-python = ">=3.10" が必要というチェックエラーが出たので、 73b90da で ruff に --ignore F821 フラッグを追加した。 いまのpyproject.toml は requires-python = ">=3.12" なんだけどなぁ、と思っていたら空白であっても [tool.ruff] セクションが必要であるとのこと。
anext
requires-python = ">=3.10"
ruff
--ignore F821
requires-python = ">=3.12"
[tool.ruff]
Sorry, something went wrong.
No branches or pull requests
参考: https://matklad.github.io/2024/03/22/basic-things.html#Build-CI
読み物(読まなくていい): The Not Rocket Science Rule
main にマージするときの確認事項:
pyright
コマンドを実行したときに型ヒントエラーがないruff check
を実行したときにエラー・警告がないruff format --diff
でリントエラー・警告が発生しないJUST_UNSTABLE=1 just --fmt --check
でjustfileのフォーマットエラー・警告が発生しない定期的にチェックしたい事項:
uv sync --locked
でパッケージが最新版であることを確認するThe text was updated successfully, but these errors were encountered: