Skip to content

Commit 6e41d74

Browse files
dsp-antclaude
andauthored
Add a-akimov to quickstart-resources; Add pre-commit hooks for code quality (#6)
* give akimov triage on quickstart-resources * Add pre-commit hooks for code quality Includes standard checks (trailing whitespace, EOF, YAML, merge conflicts) and TypeScript type checking. Expensive checks like Pulumi preview are intentionally excluded for CI instead. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> --------- Co-authored-by: Claude <[email protected]>
1 parent 45497bf commit 6e41d74

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.pre-commit-config.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.5.0
4+
hooks:
5+
- id: trailing-whitespace
6+
- id: end-of-file-fixer
7+
- id: check-yaml
8+
- id: check-merge-conflict
9+
10+
- repo: local
11+
hooks:
12+
- id: typescript-check
13+
name: TypeScript type check
14+
entry: npm run build
15+
language: system
16+
pass_filenames: false
17+
files: \.(ts|tsx)$

0 commit comments

Comments
 (0)