yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Harsh Aggarwal (NVIDIA)Bring back hooks for auto formatting and ensure build works (#7811)2d775b54d

master
816 B41 linesraw
1{
2  "hooks": {
3    "PreToolUse": [
4      {
5        "matcher": "Bash",
6        "hooks": [
7          {
8            "type": "command",
9            "command": "python3 $CLAUDE_PROJECT_DIR/.claude/hooks/pre_tool_use.py"
10          }
11        ]
12      }
13    ],
14    "SubagentStop": [
15      {
16        "matcher": "",
17        "hooks": [
18          {
19            "type": "command",
20            "command": "python3 $CLAUDE_PROJECT_DIR/.claude/hooks/stop.py --validate"
21          }
22        ]
23      }
24    ],
25    "Stop": [
26      {
27        "matcher": "",
28        "hooks": [
29          {
30            "type": "command",
31            "command": "python3 $CLAUDE_PROJECT_DIR/.claude/hooks/stop.py --validate"
32          }
33        ]
34      }
35    ]
36  },
37  "env": {
38    "BASH_DEFAULT_TIMEOUT_MS": 1200000,
39    "BASH_MAX_TIMEOUT_MS": 2400000
40  }
41}