kvalita 1.16.0 → 1.17.1
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 +6 -14
- package/configs/dockerignore +81 -0
- package/configs/gitignore +73 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -73,21 +73,13 @@ Create a `lefthook.json` file in your project root and extend the hooks you need
|
|
|
73
73
|
- `lefthook-typescript.json` - Type checks TypeScript files (pre-commit)
|
|
74
74
|
- `lefthook-commitlint.json` - Validates commit messages (commit-msg)
|
|
75
75
|
|
|
76
|
-
|
|
76
|
+
### Ignore File Templates
|
|
77
77
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
This package includes agent skills for code formatting and test writing conventions.
|
|
81
|
-
|
|
82
|
-
**Available skills:**
|
|
83
|
-
- `formatting` - Code formatting rules not handled by auto-formatters (arrow functions, exports, types, naming, comments, JSX)
|
|
84
|
-
- `testing` - Best practices, structure, coverage categories, and formatting conventions for writing tests
|
|
85
|
-
- `pr-create` - Author, open, and watch a PR through CI and the Codecov coverage report
|
|
86
|
-
|
|
87
|
-
To make them available globally in [Claude Code](https://docs.anthropic.com/en/docs/claude-code), symlink the skills directory:
|
|
78
|
+
Copy the templates into your project root, then add whatever the project itself produces:
|
|
88
79
|
|
|
89
80
|
```bash
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
ln -s /path/to/kvalita/skills/pr-create ~/.claude/skills/pr-create
|
|
81
|
+
cp node_modules/kvalita/configs/gitignore .gitignore
|
|
82
|
+
cp node_modules/kvalita/configs/dockerignore .dockerignore
|
|
93
83
|
```
|
|
84
|
+
|
|
85
|
+
The Docker entries carry a `**/` prefix because Docker matches from the build context root, not at any depth like git. `**` also matches zero directories, so the one spelling works in a flat project and a monorepo alike.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# System
|
|
2
|
+
**/Thumbs.db
|
|
3
|
+
**/.DS_Store
|
|
4
|
+
|
|
5
|
+
# Editors
|
|
6
|
+
**/.idea
|
|
7
|
+
**/.vscode
|
|
8
|
+
|
|
9
|
+
# Agents
|
|
10
|
+
**/.aider*
|
|
11
|
+
**/.claude
|
|
12
|
+
**/.codex
|
|
13
|
+
**/.continue
|
|
14
|
+
**/.cursor
|
|
15
|
+
**/.gemini
|
|
16
|
+
**/.junie
|
|
17
|
+
**/.opencode
|
|
18
|
+
**/.windsurf
|
|
19
|
+
|
|
20
|
+
# Dependencies
|
|
21
|
+
**/node_modules
|
|
22
|
+
**/.pnp
|
|
23
|
+
**/.pnp.js
|
|
24
|
+
**/.pnp.cjs
|
|
25
|
+
**/.yarn
|
|
26
|
+
**/.npm
|
|
27
|
+
**/.pnpm-store
|
|
28
|
+
**/.bun
|
|
29
|
+
|
|
30
|
+
# Debug
|
|
31
|
+
**/*.tsbuildinfo
|
|
32
|
+
|
|
33
|
+
# Caches
|
|
34
|
+
**/.cache
|
|
35
|
+
**/.parcel-cache
|
|
36
|
+
**/.turbo
|
|
37
|
+
**/.vite
|
|
38
|
+
|
|
39
|
+
# Frameworks
|
|
40
|
+
**/.astro
|
|
41
|
+
**/.next
|
|
42
|
+
**/.nuxt
|
|
43
|
+
**/.output
|
|
44
|
+
**/.svelte-kit
|
|
45
|
+
|
|
46
|
+
# Testing
|
|
47
|
+
**/playwright-report
|
|
48
|
+
**/test-results
|
|
49
|
+
|
|
50
|
+
# Deployment
|
|
51
|
+
**/.netlify
|
|
52
|
+
**/.vercel
|
|
53
|
+
|
|
54
|
+
# Output
|
|
55
|
+
**/dist
|
|
56
|
+
**/coverage
|
|
57
|
+
|
|
58
|
+
# Git
|
|
59
|
+
**/.git
|
|
60
|
+
**/.gitignore
|
|
61
|
+
|
|
62
|
+
# Docker
|
|
63
|
+
**/Dockerfile*
|
|
64
|
+
**/.dockerignore
|
|
65
|
+
**/docker-compose*.y*ml
|
|
66
|
+
**/docker-stack*.y*ml
|
|
67
|
+
**/compose*.y*ml
|
|
68
|
+
|
|
69
|
+
# Tooling
|
|
70
|
+
**/.editorconfig
|
|
71
|
+
**/biome.json
|
|
72
|
+
**/lefthook.json
|
|
73
|
+
|
|
74
|
+
# Docs
|
|
75
|
+
**/README.md
|
|
76
|
+
**/LICENSE
|
|
77
|
+
|
|
78
|
+
# Working files
|
|
79
|
+
**/_drafts
|
|
80
|
+
**/_files
|
|
81
|
+
**/_plans
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# System
|
|
2
|
+
Thumbs.db
|
|
3
|
+
.DS_Store
|
|
4
|
+
|
|
5
|
+
# Editors
|
|
6
|
+
.idea
|
|
7
|
+
.vscode
|
|
8
|
+
|
|
9
|
+
# Agents
|
|
10
|
+
.aider*
|
|
11
|
+
.claude
|
|
12
|
+
.codex
|
|
13
|
+
.continue
|
|
14
|
+
.cursor
|
|
15
|
+
.gemini
|
|
16
|
+
.junie
|
|
17
|
+
.opencode
|
|
18
|
+
.windsurf
|
|
19
|
+
|
|
20
|
+
# Dependencies
|
|
21
|
+
node_modules
|
|
22
|
+
package-lock.json
|
|
23
|
+
yarn.lock
|
|
24
|
+
pnpm-lock.yaml
|
|
25
|
+
bun.lockb
|
|
26
|
+
.pnp
|
|
27
|
+
.pnp.js
|
|
28
|
+
.pnp.cjs
|
|
29
|
+
.yarn
|
|
30
|
+
.npm
|
|
31
|
+
.pnpm-store
|
|
32
|
+
.bun
|
|
33
|
+
|
|
34
|
+
# Debug
|
|
35
|
+
npm-debug.log*
|
|
36
|
+
yarn-debug.log*
|
|
37
|
+
yarn-error.log*
|
|
38
|
+
pnpm-debug.log*
|
|
39
|
+
*.tsbuildinfo
|
|
40
|
+
|
|
41
|
+
# Caches
|
|
42
|
+
.cache
|
|
43
|
+
.parcel-cache
|
|
44
|
+
.turbo
|
|
45
|
+
.vite
|
|
46
|
+
|
|
47
|
+
# Frameworks
|
|
48
|
+
.astro
|
|
49
|
+
.next
|
|
50
|
+
.nuxt
|
|
51
|
+
.output
|
|
52
|
+
.svelte-kit
|
|
53
|
+
|
|
54
|
+
# Testing
|
|
55
|
+
playwright-report
|
|
56
|
+
test-results
|
|
57
|
+
|
|
58
|
+
# Deployment
|
|
59
|
+
.netlify
|
|
60
|
+
.vercel
|
|
61
|
+
|
|
62
|
+
# Environment
|
|
63
|
+
.env*
|
|
64
|
+
!.env*.example
|
|
65
|
+
|
|
66
|
+
# Output
|
|
67
|
+
dist
|
|
68
|
+
coverage
|
|
69
|
+
|
|
70
|
+
# Working files
|
|
71
|
+
_drafts
|
|
72
|
+
_files
|
|
73
|
+
_plans
|
package/package.json
CHANGED
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
"@commitlint/config-conventional": "^20.0.0 || ^21.0.0",
|
|
30
30
|
"conventional-changelog-conventionalcommits": "^9.0.0",
|
|
31
31
|
"lefthook": "^2.0.0",
|
|
32
|
-
"semantic-release": "^25.0.0",
|
|
32
|
+
"semantic-release": "^24.0.0 || ^25.0.0",
|
|
33
33
|
"typescript": "^6.0.0 || ^7.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@biomejs/biome": "^2.5.
|
|
37
|
-
"@commitlint/cli": "^21.
|
|
38
|
-
"@commitlint/config-conventional": "^21.
|
|
36
|
+
"@biomejs/biome": "^2.5.10",
|
|
37
|
+
"@commitlint/cli": "^21.2.2",
|
|
38
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
39
39
|
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
40
|
-
"lefthook": "^2.1.
|
|
41
|
-
"semantic-release": "^25.0.
|
|
42
|
-
"typescript": "^
|
|
40
|
+
"lefthook": "^2.1.10",
|
|
41
|
+
"semantic-release": "^25.0.9",
|
|
42
|
+
"typescript": "^7.0.2"
|
|
43
43
|
},
|
|
44
|
-
"version": "1.
|
|
44
|
+
"version": "1.17.1"
|
|
45
45
|
}
|