Skip to content

Commit d4c3dbc

Browse files
authored
fix: clean up JavaScript object syntax in project configuration docs (#5)
1 parent 4d8ed77 commit d4c3dbc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/en/config.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Sets the root directory of the project. This becomes the reference point for all
112112
```js
113113
{
114114
project: {
115-
root: process.cwd(); // Current directory
115+
root: process.cwd() // Current directory
116116
}
117117
}
118118
```
@@ -124,7 +124,7 @@ Specifies the package manager to use. This changes how workspaces are detected.
124124
```js
125125
{
126126
project: {
127-
packageManager: "yarn"; // "yarn" | "pnpm" | "npm"
127+
packageManager: "yarn" // "yarn" | "pnpm" | "npm"
128128
}
129129
}
130130
```
@@ -182,7 +182,7 @@ The directory where generated documentation will be saved. All Markdown files ar
182182
{
183183
commands: {
184184
build: {
185-
outputDir: "docs/references"; // default value
185+
outputDir: "docs/references" // default value
186186
}
187187
}
188188
}
@@ -318,7 +318,7 @@ Specifies entry points for documentation validation.
318318
{
319319
commands: {
320320
check: {
321-
entryPoints: ["src/index.ts", "src/api.ts"]; // optional
321+
entryPoints: ["src/index.ts", "src/api.ts"] // optional
322322
}
323323
}
324324
}
@@ -393,7 +393,7 @@ Configure plugins that customize document generation methods or add new output f
393393
customOption: "value",
394394
},
395395
},
396-
];
396+
]
397397
}
398398
```
399399

docs/ko/config.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Docflow의 설정은 명령어마다 구체적으로 구성할 수 있어요.
7777
```js
7878
{
7979
project: {
80-
root: process.cwd(); // 현재 디렉토리
80+
root: process.cwd() // 현재 디렉토리
8181
}
8282
}
8383
```
@@ -89,7 +89,7 @@ Docflow의 설정은 명령어마다 구체적으로 구성할 수 있어요.
8989
```js
9090
{
9191
project: {
92-
packageManager: "yarn"; // "yarn" | "pnpm" | "npm"
92+
packageManager: "yarn" // "yarn" | "pnpm" | "npm"
9393
}
9494
}
9595
```
@@ -134,7 +134,7 @@ project: {
134134
{
135135
commands: {
136136
build: {
137-
outputDir: "docs/references"; // 기본값
137+
outputDir: "docs/references" // 기본값
138138
}
139139
}
140140
}
@@ -270,7 +270,7 @@ docs/
270270
{
271271
commands: {
272272
check: {
273-
entryPoints: ["src/index.ts", "src/api.ts"]; // 선택사항
273+
entryPoints: ["src/index.ts", "src/api.ts"] // 선택사항
274274
}
275275
}
276276
}
@@ -338,7 +338,7 @@ generate 명령어는 `@generate` 태그가 있는 함수에 대해 AI를 활용
338338
},
339339
}),
340340
},
341-
];
341+
]
342342
}
343343
```
344344

0 commit comments

Comments
 (0)