You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Markdown documents should only have one h1 header, it is pretty unlikely that an existing agents config does not already have one, switching to h2 instead should make most linters happy.
In theory you could make this a little smarter by checking beforehand..
Copy file name to clipboardExpand all lines: packages/nx/src/ai/set-up-ai-agents/get-agent-rules.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
exportfunctiongetAgentRules(nxCloud: boolean){
2
2
return`
3
-
# General Guidelines for working with Nx
3
+
## General Guidelines for working with Nx
4
4
5
5
- When running tasks (for example build, lint, test, e2e, etc.), always prefer running the task through \`nx\` (i.e. \`nx run\`, \`nx run-many\`, \`nx affected\`) instead of using the underlying tooling directly
6
6
- You have access to the Nx MCP server and its tools, use them to help the user
0 commit comments