pyproject-fmt icon indicating copy to clipboard operation
pyproject-fmt copied to clipboard

Results 15 pyproject-fmt issues
Sort by recently updated
recently updated
newest added

updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.2 → v0.4.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.2...v0.4.3)

Currently this project only preserves comments when they're on a line with syntax, otherwise they are removed: `pyproject.toml`: ```toml [project] # A comment-only line name = "something" # This is...

bug
help wanted

Hello. I set up pyproject-fmt for some of our projects which are apps, not libraries, not meant to be upload to PyPI, and I find the classifiers automatic generation unwanted...

enhancement
good first issue

Sorry if I'm doing something wrong but when running the `pyproject-fmt` it breaks our pyproject.toml and moving it manually to below the "dynamic" entry fixes it. One can see that...

bug
help wanted

Formatting the following file with `pyproject-fmt` causes the build to fail, and I am guessing the root cause is the misplaced `[[project.authors]]` section. This can be fixed manually by the...

enhancement
help wanted

I have a pyproject.toml file which had one arguably out of order block: ```toml [tool.ruff.isort] known-first-party = ["myapp"] [tool.ruff] line-length = 88 target-version = "py310" select = [ "A", #...

bug
help wanted

Thanks for this. However, I'm not sure I like the logic to move some blessed or favorite tools to the start of the tools section: https://github.com/tox-dev/pyproject-fmt/blob/a511b082b5f9d17ef18cd0719a3c1b457a3c1c6d/src/pyproject_fmt/formatter/tools.py#L29. I feel like it...

enhancement
help wanted

when i pass a file with these tables into `pyproject-fmt` (2.2.4): ```toml [tool.flake8] [tool.cff-from-621] [tool.cff-from-621.static] [tool.coverage.run] [tool.coverage.report] [tool.hatch.envs.linting] [tool.hatch.envs.linting.scripts] [tool.hatch.envs.unit-tests] [tool.hatch.envs.unit-tests.scripts] [tool.hatch.envs.mypy] [tool.hatch.envs.mypy.scripts] ``` these get reordered to: ```toml [tool.hatch.envs.linting]...

the following except from a `pyproject.toml` will be reformatted to the follow on example which when then passed into ruff the tool complains is invalid (errors provided). The expected behavior...

updates: - [github.com/python-jsonschema/check-jsonschema: 0.31.3 → 0.32.1](https://github.com/python-jsonschema/check-jsonschema/compare/0.31.3...0.32.1)