diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 09ffb1e92..38aab6594 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -255,7 +255,7 @@ poetry export --without-hashes --with license -o requirements-license.txt ### タイポ検査 タイポ検査を採用しています。 -目的は可読性の向上であり、チェッカーには [`typos`](https://github.com/crate-ci/typos) を採用しています。誤判定やチェックから除外すべきファイルがあれば[設定ファイルの説明](https://github.com/crate-ci/typos#false-positives)に従って `_typos.toml` を編集してください。 +目的は可読性の向上であり、チェッカーには [`typos`](https://github.com/crate-ci/typos) を採用しています。誤判定やチェックから除外すべきファイルがあれば[設定ファイルの説明](https://github.com/crate-ci/typos#false-positives)に従って `pyproject.toml` を編集してください。 ローカルへの `typos` 導入は各自の環境に合わせて公式ドキュメントを参照してください。ローカルへの導入が難しい場合、プルリクエスト時に GitHub Actions で自動実行される `typos` の結果を参照してください。 #### タイポを検査する diff --git a/README.md b/README.md index a0a96c6d5..20e6b533b 100644 --- a/README.md +++ b/README.md @@ -630,7 +630,7 @@ typos でタイポチェックを行えます。 もし誤判定やチェックから除外すべきファイルがあれば -[設定ファイルの説明](https://github.com/crate-ci/typos#false-positives) に従って`_typos.toml`を編集してください。 +[設定ファイルの説明](https://github.com/crate-ci/typos#false-positives) に従って`pyproject.toml`を編集してください。 ### 依存関係 diff --git a/_typos.toml b/_typos.toml deleted file mode 100644 index 45d94f1f2..000000000 --- a/_typos.toml +++ /dev/null @@ -1,5 +0,0 @@ -# typos の設定ファイル -# 書式は以下の公式ドキュメントを参照: https://github.com/crate-ci/typos#false-positives - -[default.extend-words] -datas="datas" # PyInstallerの引数 diff --git a/pyproject.toml b/pyproject.toml index 167042483..e872edad4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,9 @@ line_length = 88 multi_line_output = 3 use_parentheses = true +[tool.typos.default.extend-words] +datas = "datas" # PyInstaller's argument + [tool.poetry] package-mode = false