Initial commit
This commit is contained in:
12
.claude-plugin/plugin.json
Normal file
12
.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "rust-lint",
|
||||
"description": "Automatically format Rust files with rustfmt and provide on-demand clippy linting",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Cheolwan Park",
|
||||
"url": "https://github.com/cheolwanpark"
|
||||
},
|
||||
"hooks": [
|
||||
"./hooks/hooks.json"
|
||||
]
|
||||
}
|
||||
3
README.md
Normal file
3
README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# rust-lint
|
||||
|
||||
Automatically format Rust files with rustfmt and provide on-demand clippy linting
|
||||
17
hooks/hooks.json
Normal file
17
hooks/hooks.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"description": "Automatically format Rust files after editing or writing",
|
||||
"hooks": {
|
||||
"PostToolUse": [
|
||||
{
|
||||
"matcher": "Edit|Write",
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/rust-lint.sh",
|
||||
"timeout": 30
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
45
plugin.lock.json
Normal file
45
plugin.lock.json
Normal file
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"$schema": "internal://schemas/plugin.lock.v1.json",
|
||||
"pluginId": "gh:cheolwanpark/claude-plugins:plugins/rust-lint",
|
||||
"normalized": {
|
||||
"repo": null,
|
||||
"ref": "refs/tags/v20251128.0",
|
||||
"commit": "d8b7992040f0971f5835450ffc75a7765161bfe5",
|
||||
"treeHash": "53bf75a1bbc0bde1982edad4ee5c0e7bc67396349360ac0343887f31c1fe98c0",
|
||||
"generatedAt": "2025-11-28T10:15:01.037615Z",
|
||||
"toolVersion": "publish_plugins.py@0.2.0"
|
||||
},
|
||||
"origin": {
|
||||
"remote": "git@github.com:zhongweili/42plugin-data.git",
|
||||
"branch": "master",
|
||||
"commit": "aa1497ed0949fd50e99e70d6324a29c5b34f9390",
|
||||
"repoRoot": "/Users/zhongweili/projects/openmind/42plugin-data"
|
||||
},
|
||||
"manifest": {
|
||||
"name": "rust-lint",
|
||||
"description": "Automatically format Rust files with rustfmt and provide on-demand clippy linting",
|
||||
"version": "1.0.0"
|
||||
},
|
||||
"content": {
|
||||
"files": [
|
||||
{
|
||||
"path": "README.md",
|
||||
"sha256": "35258c4353cf46612f3d144ef6f4dfc74423de922e85b9f62bb136a188db887c"
|
||||
},
|
||||
{
|
||||
"path": "hooks/hooks.json",
|
||||
"sha256": "d6810df3ff440c0f9c9d8d579a604025de5167faecaa196d10349bf10171ee54"
|
||||
},
|
||||
{
|
||||
"path": ".claude-plugin/plugin.json",
|
||||
"sha256": "81efc871d3f8efcb0f652898742d8bc54aecff5cf8a1728561f3bfe439f2ca9c"
|
||||
}
|
||||
],
|
||||
"dirSha256": "53bf75a1bbc0bde1982edad4ee5c0e7bc67396349360ac0343887f31c1fe98c0"
|
||||
},
|
||||
"security": {
|
||||
"scannedAt": null,
|
||||
"scannerVersion": null,
|
||||
"flags": []
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user