File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ module.exports = {
39
39
"src/commands/pull.ts" ,
40
40
"src/lib/file-system-repo.test.ts" ,
41
41
"src/lib/file-system-repo.ts" ,
42
- "src/server/api/items.ts" ,
43
42
"src/server/api/readme.ts" ,
44
43
"src/server/app.ts" ,
45
44
"src/server/lib/get-current-user.ts" ,
Original file line number Diff line number Diff line change 1
1
import type Express from "express" ;
2
2
import { Router } from "express" ;
3
- import { config } from "../../lib/config " ;
3
+ import { checkFrontmatterType } from "../../lib/check-frontmatter-type " ;
4
4
import { getFileSystemRepo } from "../../lib/get-file-system-repo" ;
5
5
import { getQiitaApiInstance } from "../../lib/get-qiita-api-instance" ;
6
- import { itemsShowPath } from "../../lib/qiita-cli-url" ;
7
6
import { validateItem } from "../../lib/validators/item-validator" ;
8
7
import type {
9
8
ItemViewModel ,
10
9
ItemsIndexViewModel ,
11
10
ItemsShowViewModel ,
12
11
} from "../../lib/view-models/items" ;
13
- import { Item , QiitaApi } from "../../qiita-api" ;
14
- import { checkFrontmatterType } from "../../lib/check-frontmatter-type" ;
12
+ import { Item } from "../../qiita-api" ;
15
13
import { getCurrentUser } from "../lib/get-current-user" ;
16
14
import { itemUrl } from "../lib/qiita-url" ;
17
15
You can’t perform that action at this time.
0 commit comments