diff --git a/.prettierrc.yaml b/.prettierrc.yaml index 2003b87a..46384783 100644 --- a/.prettierrc.yaml +++ b/.prettierrc.yaml @@ -3,3 +3,5 @@ overrides: - files: "CHANGELOG.md" options: proseWrap: always +plugins: + - "prettier-plugin-toml" diff --git a/README.md b/README.md index 666dec23..ff17e02d 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,6 @@ dynamic = ["dependencies", "optional-dependencies"] [tool.setuptools.dynamic] dependencies = { file = ["requirements.in"] } optional-dependencies.test = { file = ["requirements-test.txt"] } - ``` If you have a Django application that is packaged using `Hatch`, and you diff --git a/pyproject.toml b/pyproject.toml index ac3e04ee..317098b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ dependencies = [ "tomli; python_version < '3.11'", # indirect dependencies "setuptools", # typically needed when pip-tools invokes setup.py - "wheel", # pip plugin needed by pip-tools + "wheel", # pip plugin needed by pip-tools ] diff --git a/tests/test_data/packages/small_fake_with_build_deps/pyproject.toml b/tests/test_data/packages/small_fake_with_build_deps/pyproject.toml index c765cd18..bd1b0477 100644 --- a/tests/test_data/packages/small_fake_with_build_deps/pyproject.toml +++ b/tests/test_data/packages/small_fake_with_build_deps/pyproject.toml @@ -1,8 +1,8 @@ [build-system] -requires = [ - "setuptools==68.1.2", - "wheel==0.41.1", - "fake_static_build_dep" +requires = [ # prettier-ignore + "setuptools==68.1.2", + "wheel==0.41.1", + "fake_static_build_dep", ] build-backend = "backend" backend-path = ["backend"]