We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e7cc18 commit 5d65c40Copy full SHA for 5d65c40
1 file changed
CLAUDE.md
@@ -61,6 +61,18 @@ Millions of rows. Every query matters.
61
- Write queries with performance in mind. Think about what indexes exist, what
62
the query plan looks like, and whether you're scanning more rows than needed.
63
64
+## Linting
65
+
66
+After modifying files in any workspace, always run lint from the repo root using the package name (found in the workspace's `package.json`):
67
68
+```
69
+pnpm --filter <package-name> lint
70
71
72
+For example: `pnpm --filter @crowd/members-enrichment-worker lint`
73
74
+Fix all lint errors before considering the task done. Do not leave lint failures in modified workspaces.
75
76
## Code quality
77
78
- Functional and modular. Code should be easy to plug in, pull out, and test
0 commit comments