@nolrm/contextkit 0.13.4 → 0.13.5
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.
- package/README.md +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -253,17 +253,20 @@ For **Node.js projects**, a `prepare` script is automatically added to `package.
|
|
|
253
253
|
|
|
254
254
|
### Framework-Aware Quality Gates
|
|
255
255
|
|
|
256
|
-
The pre-push hook detects your project type and runs the right quality checks automatically. All gates
|
|
256
|
+
The pre-push hook detects your project type and runs the right quality checks automatically. All gates are skipped silently when tools aren't installed.
|
|
257
257
|
|
|
258
258
|
| Framework | Checks |
|
|
259
259
|
|-----------|--------|
|
|
260
|
-
| **Node.js** | TypeScript, ESLint, Prettier, build, test
|
|
260
|
+
| **Node.js** | TypeScript, ESLint, Prettier, build, test, e2e — each only runs when present in `package.json`; auto-detects npm/yarn/pnpm/bun |
|
|
261
261
|
| **Python** | ruff/flake8, mypy, black/ruff format, pytest |
|
|
262
262
|
| **Rust** | cargo check, clippy, cargo test |
|
|
263
263
|
| **Go** | go vet, golangci-lint, go test |
|
|
264
264
|
| **PHP** | PHPStan, PHPUnit |
|
|
265
265
|
| **Ruby** | RuboCop, RSpec/rake test |
|
|
266
266
|
| **Java** | Maven verify / Gradle check |
|
|
267
|
+
| **Kotlin** | ktlint, Gradle test |
|
|
268
|
+
| **Swift** | SwiftLint, swift test |
|
|
269
|
+
| **.NET / C#** | dotnet build, dotnet test |
|
|
267
270
|
|
|
268
271
|
### Commit Message Format
|
|
269
272
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nolrm/contextkit",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"description": "ContextKit - Context Engineering for AI Development. Provide rich context to AI through structured MD files with standards, code guides, and documentation. Works with Cursor, Claude, Aider, VS Code Copilot, and more.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|