Add pi stuff

This commit is contained in:
2026-08-19 18:52:21 -04:00
parent e8798f83a8
commit 7f9d8eee71
2 changed files with 45 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Development Rules
## Conversational Style
- Keep answers short and concise
- No emojis in commits, issues, PR comments, or code
- No fluff or cheerful filler text (e.g., "Thanks @user" not "Thanks so much @user!")
- Technical prose only, be direct
- Use concise, clear, simple language. Define unavoidable jargon before using it.
- Explain non-trivial designs and problems as: problem, concrete example or short trace, then solution. State why the solution is necessary and distinguish it from optional complexity.
- Prefer concrete behavior and small illustrations over abstract summaries, dense terminology, or unexplained lists of changes.
- When the user asks a question, answer it first before making edits or running implementation commands.
- When responding to user feedback or an analysis, explicitly say whether you agree or disagree before saying what you changed.
## Code Quality
- Read files in full before wide-ranging changes, before editing files you have not fully inspected, and when asked to investigate or audit. Do not rely on search snippets for broad changes.
+28
View File
@@ -0,0 +1,28 @@
{
"$schema": "https://gitea.itspm.cc/pmcc/pi-lsp/raw/branch/main/lsp.schema.json",
"maxResults": 200,
"startupTimeoutMs": 30000,
"requestTimeoutMs": 15000,
"diagnosticsTimeoutMs": 5000,
"servers": {
"clangd": {
"enabled": true,
"command": "clangd",
"args": [
"--background-index",
"--clang-tidy",
"--completion-style=detailed"
]
},
"gopls": {
"enabled": true,
"command": "gopls",
"args": []
},
"typescript": {
"enabled": true,
"command": "typescript-language-server",
"args": ["--stdio"]
}
}
}