plain.code 0.15.0__tar.gz → 0.17.0__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.
- {plain_code-0.15.0 → plain_code-0.17.0}/PKG-INFO +2 -2
- {plain_code-0.15.0 → plain_code-0.17.0}/plain/code/CHANGELOG.md +21 -0
- plain_code-0.17.0/plain/code/skills/plain-check/SKILL.md +35 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/pyproject.toml +2 -2
- {plain_code-0.15.0 → plain_code-0.17.0}/.gitignore +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/LICENSE +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/README.md +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/plain/code/README.md +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/plain/code/__init__.py +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/plain/code/biome.py +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/plain/code/biome_defaults.json +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/plain/code/cli.py +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/plain/code/entrypoints.py +0 -0
- {plain_code-0.15.0 → plain_code-0.17.0}/plain/code/ruff_defaults.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plain.code
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.17.0
|
|
4
4
|
Summary: Preconfigured code formatting and linting.
|
|
5
5
|
Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -10,7 +10,7 @@ Requires-Dist: plain<1.0.0
|
|
|
10
10
|
Requires-Dist: requests>=2.0.0
|
|
11
11
|
Requires-Dist: ruff>=0.1.0
|
|
12
12
|
Requires-Dist: tomlkit>=0.11.0
|
|
13
|
-
Requires-Dist: ty>=0.0.
|
|
13
|
+
Requires-Dist: ty>=0.0.11
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
|
|
16
16
|
# plain.code
|
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# plain-code changelog
|
|
2
2
|
|
|
3
|
+
## [0.17.0](https://github.com/dropseed/plain/releases/plain-code@0.17.0) (2026-01-13)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Updated the minimum ty type checker version to 0.0.11 for improved Self type inference and unused-ignore-comment detection ([9d83576](https://github.com/dropseed/plain/commit/9d83576))
|
|
8
|
+
- Added a `plain-check` skill for AI agents with instructions for running code quality checks ([b592c32](https://github.com/dropseed/plain/commit/b592c32))
|
|
9
|
+
|
|
10
|
+
### Upgrade instructions
|
|
11
|
+
|
|
12
|
+
- No changes required
|
|
13
|
+
|
|
14
|
+
## [0.16.0](https://github.com/dropseed/plain/releases/plain-code@0.16.0) (2025-12-26)
|
|
15
|
+
|
|
16
|
+
### What's changed
|
|
17
|
+
|
|
18
|
+
- Updated the minimum ty type checker version to 0.0.7 ([a5eef56](https://github.com/dropseed/plain/commit/a5eef56))
|
|
19
|
+
|
|
20
|
+
### Upgrade instructions
|
|
21
|
+
|
|
22
|
+
- No changes required
|
|
23
|
+
|
|
3
24
|
## [0.15.0](https://github.com/dropseed/plain/releases/plain-code@0.15.0) (2025-12-12)
|
|
4
25
|
|
|
5
26
|
### What's changed
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: plain-check
|
|
3
|
+
description: Runs code quality checks including ruff, type checking, and biome. Use for linting, formatting, or preflight validation.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Code Quality
|
|
7
|
+
|
|
8
|
+
## Check for Issues
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
uv run plain code check [path]
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Runs ruff, ty (type checking), and biome checks.
|
|
15
|
+
|
|
16
|
+
## Fix Issues
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
uv run plain fix [path]
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Automatically fixes formatting and linting issues.
|
|
23
|
+
|
|
24
|
+
Options:
|
|
25
|
+
|
|
26
|
+
- `--unsafe-fixes` - Apply ruff unsafe fixes
|
|
27
|
+
- `--add-noqa` - Add noqa comments to suppress errors
|
|
28
|
+
|
|
29
|
+
## Preflight Checks
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
uv run plain preflight
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Validates Plain configuration.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "plain.code"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.17.0"
|
|
4
4
|
description = "Preconfigured code formatting and linting."
|
|
5
5
|
authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
|
|
6
6
|
readme = "README.md"
|
|
@@ -9,7 +9,7 @@ requires-python = ">=3.13"
|
|
|
9
9
|
dependencies = [
|
|
10
10
|
"plain<1.0.0",
|
|
11
11
|
"ruff>=0.1.0",
|
|
12
|
-
"ty>=0.0.
|
|
12
|
+
"ty>=0.0.11",
|
|
13
13
|
"requests>=2.0.0",
|
|
14
14
|
"tomlkit>=0.11.0",
|
|
15
15
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|