Skip to content

Commit 47c71a4

Browse files
committed
Prettier
1 parent 55a7b13 commit 47c71a4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/configuration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ if (debugFlag) {
151151
```
152152

153153
Key characteristics:
154+
154155
- **In-Memory Only**: Configuration is stored entirely in memory and does not persist between server restarts
155156
- **Type Safety**: Uses TypeScript interfaces for configuration structure
156157
- **Programmatic API**: Simple, promise-based API for getting and setting configuration values
@@ -182,6 +183,7 @@ if (config.promptsEnabled) {
182183
```
183184

184185
Default configuration values:
186+
185187
```typescript
186188
{
187189
promptsEnabled: true, // Enables prompt functionality

src/prompts/manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export class PromptManager {
140140
console.error(`Failed to create main config directory: ${resolvedConfigDir}`, err);
141141
}
142142
}
143-
143+
144144
// Create prompts subdirectory if it doesn't exist
145145
const promptsDir = path.join(resolvedConfigDir, 'prompts');
146146
if (!fs.existsSync(promptsDir)) {

src/utils/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This file defines:
55
* 1. Filesystem paths for components that need filesystem access (prompts)
66
* 2. Default application constants
7-
*
7+
*
88
* Note: The main configuration system is in-memory only and doesn't use
99
* filesystem persistence for configuration values. The filesystem paths
1010
* defined here are only used for prompt-related functionality.

0 commit comments

Comments
 (0)