readability-cli 0.8.4__tar.gz → 0.8.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {readability_cli-0.8.4 → readability_cli-0.8.5}/PKG-INFO +3 -4
  2. {readability_cli-0.8.4 → readability_cli-0.8.5}/README.md +2 -3
  3. {readability_cli-0.8.4 → readability_cli-0.8.5}/configs/biome-default.json +5 -0
  4. {readability_cli-0.8.4 → readability_cli-0.8.5}/pyproject.toml +1 -1
  5. {readability_cli-0.8.4 → readability_cli-0.8.5}/readability.py +1 -1
  6. {readability_cli-0.8.4 → readability_cli-0.8.5}/test_readability.py +1 -0
  7. {readability_cli-0.8.4 → readability_cli-0.8.5}/uv.lock +1 -1
  8. {readability_cli-0.8.4 → readability_cli-0.8.5}/.github/workflows/ci.yml +0 -0
  9. {readability_cli-0.8.4 → readability_cli-0.8.5}/.github/workflows/publish.yml +0 -0
  10. {readability_cli-0.8.4 → readability_cli-0.8.5}/.github/workflows/update-guides.yml +0 -0
  11. {readability_cli-0.8.4 → readability_cli-0.8.5}/.gitignore +0 -0
  12. {readability_cli-0.8.4 → readability_cli-0.8.5}/.python-version +0 -0
  13. {readability_cli-0.8.4 → readability_cli-0.8.5}/LICENSE +0 -0
  14. {readability_cli-0.8.4 → readability_cli-0.8.5}/configs/pyrefly.toml +0 -0
  15. {readability_cli-0.8.4 → readability_cli-0.8.5}/configs/ruff.toml +0 -0
  16. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/Rguide.md +0 -0
  17. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/cppguide.md +0 -0
  18. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/csharp-style.md +0 -0
  19. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/docguide-style.md +0 -0
  20. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/go-guide.md +0 -0
  21. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/htmlcssguide.md +0 -0
  22. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/javaguide.md +0 -0
  23. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/jsguide.md +0 -0
  24. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/jsoncstyleguide.md +0 -0
  25. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/objcguide.md +0 -0
  26. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/pyguide.md +0 -0
  27. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/shellguide.md +0 -0
  28. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/tsguide.md +0 -0
  29. {readability_cli-0.8.4 → readability_cli-0.8.5}/guides/vimscriptguide.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: readability-cli
3
- Version: 0.8.4
3
+ Version: 0.8.5
4
4
  Summary: A CLI to lint, format, and type-check code with Google-style defaults, and pull Google style guides in markdown format.
5
5
  Project-URL: Homepage, https://github.com/owahltinez/readability
6
6
  Project-URL: Repository, https://github.com/owahltinez/readability
@@ -183,9 +183,8 @@ project does not define its own configuration. To override them, add a
183
183
  `[tool.ruff]` or `[tool.pyrefly]` section to your `pyproject.toml`, or a
184
184
  dedicated `ruff.toml`, `pyrefly.toml`, `biome.json`, or `biome.jsonc` — any
185
185
  project-level configuration takes full precedence. The bundled Biome file
186
- intentionally uses only settings supported by both Biome 1.x and 2.x, so a
187
- project-local installation remains authoritative without creating a schema
188
- mismatch.
186
+ requires Biome 2.5 or later, matching the version floor used by the fallback
187
+ runner.
189
188
 
190
189
  ## Style Guides
191
190
 
@@ -169,9 +169,8 @@ project does not define its own configuration. To override them, add a
169
169
  `[tool.ruff]` or `[tool.pyrefly]` section to your `pyproject.toml`, or a
170
170
  dedicated `ruff.toml`, `pyrefly.toml`, `biome.json`, or `biome.jsonc` — any
171
171
  project-level configuration takes full precedence. The bundled Biome file
172
- intentionally uses only settings supported by both Biome 1.x and 2.x, so a
173
- project-local installation remains authoritative without creating a schema
174
- mismatch.
172
+ requires Biome 2.5 or later, matching the version floor used by the fallback
173
+ runner.
175
174
 
176
175
  ## Style Guides
177
176
 
@@ -10,5 +10,10 @@
10
10
  "rules": {
11
11
  "recommended": true
12
12
  }
13
+ },
14
+ "html": {
15
+ "parser": {
16
+ "interpolation": true
17
+ }
13
18
  }
14
19
  }
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "readability-cli"
3
- version = "0.8.4"
3
+ version = "0.8.5"
4
4
  description = "A CLI to lint, format, and type-check code with Google-style defaults, and pull Google style guides in markdown format."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -1741,7 +1741,7 @@ def _tool_checked_files(
1741
1741
  if tool_name != "biome":
1742
1742
  return True
1743
1743
  output = f"{result.stdout or ''}\n{result.stderr or ''}"
1744
- # Biome 1.x and 2.x use these summaries for an unmatched target.
1744
+ # Biome 2.x uses these summaries for an unmatched target.
1745
1745
  zero_file_summaries = ("Checked 0 files", "Formatted 0 files")
1746
1746
  return not any(summary in output for summary in zero_file_summaries)
1747
1747
 
@@ -653,6 +653,7 @@ def test_bundled_default_configs_are_valid() -> None:
653
653
  "lineWidth": 80,
654
654
  }
655
655
  assert biome_config["linter"]["rules"]["recommended"] is True
656
+ assert biome_config["html"]["parser"]["interpolation"] is True
656
657
 
657
658
  # The ruff defaults follow the Google Python style guide
658
659
  ruff_config = tomllib.loads(_bundled_config("ruff").read_text())
@@ -194,7 +194,7 @@ wheels = [
194
194
 
195
195
  [[package]]
196
196
  name = "readability-cli"
197
- version = "0.8.4"
197
+ version = "0.8.5"
198
198
  source = { editable = "." }
199
199
  dependencies = [
200
200
  { name = "beautifulsoup4" },
File without changes