Skip to content

Commit 8a410fe

Browse files
committed
format with biome
1 parent c06a005 commit 8a410fe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1496
-1486
lines changed

.cspell.json

+30-29
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
11
{
2-
"version": "0.2",
3-
"language": "en",
4-
"words": [
5-
"decos",
6-
"helpfeel",
7-
"gyazo",
8-
"coord",
9-
"progfay",
10-
"scrapbox",
11-
"backquote",
12-
"hoge",
13-
"fuga",
14-
"piyo",
15-
"tsbuildinfo"
16-
],
17-
"ignorePaths": [
18-
"node_modules/**",
19-
"tests/**/__snapshots__/**",
20-
"coverage/**",
21-
"esm/**",
22-
"lib/**",
23-
"umd/**",
24-
"*.tsbuildinfo",
25-
"tests/page/input.txt",
26-
"cc-test-reporter",
27-
"package.json",
28-
"package-lock.json"
29-
]
30-
}
2+
"version": "0.2",
3+
"language": "en",
4+
"words": [
5+
"backquote",
6+
"biomejs",
7+
"coord",
8+
"decos",
9+
"fuga",
10+
"gyazo",
11+
"helpfeel",
12+
"hoge",
13+
"piyo",
14+
"progfay",
15+
"scrapbox",
16+
"tsbuildinfo"
17+
],
18+
"ignorePaths": [
19+
"node_modules/**",
20+
"tests/**/__snapshots__/**",
21+
"coverage/**",
22+
"esm/**",
23+
"lib/**",
24+
"umd/**",
25+
"*.tsbuildinfo",
26+
"tests/page/input.txt",
27+
"cc-test-reporter",
28+
"package.json",
29+
"package-lock.json"
30+
]
31+
}

jsr.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@progfay/scrapbox-parser",
3-
"version": "9.0.0",
4-
"exports": "./src/index.ts"
5-
}
2+
"name": "@progfay/scrapbox-parser",
3+
"version": "9.0.0",
4+
"exports": "./src/index.ts"
5+
}

renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"extends": ["config:base"]
2+
"extends": ["config:base"]
33
}

src/block/CodeBlock.ts

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
import type { Row } from "./Row";
22

33
export interface CodeBlockPack {
4-
type: "codeBlock";
5-
rows: Row[];
4+
type: "codeBlock";
5+
rows: Row[];
66
}
77

88
/**
99
* Scrapbox {@link https://scrapbox.io/help/Syntax#58348ae2651ee500008d67df | code block} type
1010
*/
1111
export interface CodeBlock {
12-
indent: number;
13-
type: "codeBlock";
14-
fileName: string;
15-
content: string;
12+
indent: number;
13+
type: "codeBlock";
14+
fileName: string;
15+
content: string;
1616
}
1717

1818
export const convertToCodeBlock = (pack: CodeBlockPack): CodeBlock => {
19-
const {
20-
rows: [head, ...body],
21-
} = pack;
22-
const { indent = 0, text = "" } = head ?? {};
23-
const fileName: string = text.replace(/^\s*code:/, "");
19+
const {
20+
rows: [head, ...body],
21+
} = pack;
22+
const { indent = 0, text = "" } = head ?? {};
23+
const fileName: string = text.replace(/^\s*code:/, "");
2424

25-
return {
26-
indent,
27-
type: "codeBlock",
28-
fileName,
29-
content: body
30-
.map((row: Row): string => row.text.substring(indent + 1))
31-
.join("\n"),
32-
};
25+
return {
26+
indent,
27+
type: "codeBlock",
28+
fileName,
29+
content: body
30+
.map((row: Row): string => row.text.substring(indent + 1))
31+
.join("\n"),
32+
};
3333
};

src/block/Line.ts

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ import type { Row } from "./Row";
44
import type { Node } from "./node/type";
55

66
export interface LinePack {
7-
type: "line";
8-
rows: [Row];
7+
type: "line";
8+
rows: [Row];
99
}
1010

1111
/**
1212
* Scrapbox line type
1313
*/
1414
export interface Line {
15-
indent: number;
16-
type: "line";
17-
nodes: Node[];
15+
indent: number;
16+
type: "line";
17+
nodes: Node[];
1818
}
1919

2020
export const convertToLine = (pack: LinePack): Line => {
21-
const { indent, text } = pack.rows[0];
22-
return {
23-
indent,
24-
type: "line",
25-
nodes: convertToNodes(text.substring(indent), {
26-
nested: false,
27-
quoted: false,
28-
context: "line",
29-
}),
30-
};
21+
const { indent, text } = pack.rows[0];
22+
return {
23+
indent,
24+
type: "line",
25+
nodes: convertToNodes(text.substring(indent), {
26+
nested: false,
27+
quoted: false,
28+
context: "line",
29+
}),
30+
};
3131
};

src/block/Pack.ts

+28-28
Original file line numberDiff line numberDiff line change
@@ -8,40 +8,40 @@ import type { TitlePack } from "./Title";
88
export type Pack = TitlePack | CodeBlockPack | TablePack | LinePack;
99

1010
const isChildRowOfPack = (pack: Pack, row: Row): boolean =>
11-
(pack.type === "codeBlock" || pack.type === "table") &&
12-
row.indent > (pack.rows[0]?.indent ?? 0);
11+
(pack.type === "codeBlock" || pack.type === "table") &&
12+
row.indent > (pack.rows[0]?.indent ?? 0);
1313

1414
const packing = (packs: Pack[], row: Row): Pack[] => {
15-
const lastPack = packs[packs.length - 1];
16-
if (lastPack !== undefined && isChildRowOfPack(lastPack, row)) {
17-
lastPack.rows.push(row);
18-
return packs;
19-
}
15+
const lastPack = packs[packs.length - 1];
16+
if (lastPack !== undefined && isChildRowOfPack(lastPack, row)) {
17+
lastPack.rows.push(row);
18+
return packs;
19+
}
2020

21-
packs.push({
22-
type: /^\s*code:/.test(row.text)
23-
? "codeBlock"
24-
: /^\s*table:/.test(row.text)
25-
? "table"
26-
: "line",
27-
rows: [row],
28-
});
21+
packs.push({
22+
type: /^\s*code:/.test(row.text)
23+
? "codeBlock"
24+
: /^\s*table:/.test(row.text)
25+
? "table"
26+
: "line",
27+
rows: [row],
28+
});
2929

30-
return packs;
30+
return packs;
3131
};
3232

3333
export const packRows = (rows: Row[], opts: ParserOption): Pack[] => {
34-
if (opts.hasTitle ?? true) {
35-
const [title, ...body] = rows;
36-
if (title === undefined) return [];
37-
return [
38-
{
39-
type: "title",
40-
rows: [title],
41-
},
42-
...body.reduce(packing, []),
43-
];
44-
}
34+
if (opts.hasTitle ?? true) {
35+
const [title, ...body] = rows;
36+
if (title === undefined) return [];
37+
return [
38+
{
39+
type: "title",
40+
rows: [title],
41+
},
42+
...body.reduce(packing, []),
43+
];
44+
}
4545

46-
return rows.reduce(packing, []);
46+
return rows.reduce(packing, []);
4747
};

src/block/Row.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
export interface Row {
2-
indent: number;
3-
text: string;
2+
indent: number;
3+
text: string;
44
}
55

66
export const parseToRows = (input: string): Row[] =>
7-
input.split("\n").map((text) => ({
8-
indent: /^\s+/.exec(text)?.[0]?.length ?? 0,
9-
text,
10-
}));
7+
input.split("\n").map((text) => ({
8+
indent: /^\s+/.exec(text)?.[0]?.length ?? 0,
9+
text,
10+
}));

src/block/Table.ts

+27-27
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,41 @@ import type { Row } from "./Row";
44
import type { Node } from "./node/type";
55

66
export interface TablePack {
7-
type: "table";
8-
rows: Row[];
7+
type: "table";
8+
rows: Row[];
99
}
1010

1111
/**
1212
* Scrapbox {@link https://scrapbox.io/help/Syntax#58795996651ee5000012d4c7 | table} type
1313
*/
1414
export interface Table {
15-
indent: number;
16-
type: "table";
17-
fileName: string;
18-
cells: Node[][][];
15+
indent: number;
16+
type: "table";
17+
fileName: string;
18+
cells: Node[][][];
1919
}
2020

2121
export const convertToTable = (pack: TablePack): Table => {
22-
const {
23-
rows: [head, ...body],
24-
} = pack;
25-
const { indent = 0, text = "" } = head ?? {};
26-
const fileName = text.replace(/^\s*table:/, "");
22+
const {
23+
rows: [head, ...body],
24+
} = pack;
25+
const { indent = 0, text = "" } = head ?? {};
26+
const fileName = text.replace(/^\s*table:/, "");
2727

28-
return {
29-
indent,
30-
type: "table",
31-
fileName,
32-
cells: body
33-
.map((row: Row): string => row.text.substring(indent + 1))
34-
.map((text: string): Node[][] =>
35-
text.split("\t").map((block: string): Node[] =>
36-
convertToNodes(block, {
37-
nested: false,
38-
quoted: false,
39-
context: "table",
40-
}),
41-
),
42-
),
43-
};
28+
return {
29+
indent,
30+
type: "table",
31+
fileName,
32+
cells: body
33+
.map((row: Row): string => row.text.substring(indent + 1))
34+
.map((text: string): Node[][] =>
35+
text.split("\t").map((block: string): Node[] =>
36+
convertToNodes(block, {
37+
nested: false,
38+
quoted: false,
39+
context: "table",
40+
}),
41+
),
42+
),
43+
};
4444
};

src/block/Title.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
import type { Row } from "./Row";
22

33
export interface TitlePack {
4-
type: "title";
5-
rows: [Row];
4+
type: "title";
5+
rows: [Row];
66
}
77

88
/**
99
* Scrapbox title type
1010
*/
1111
export interface Title {
12-
type: "title";
13-
text: string;
12+
type: "title";
13+
text: string;
1414
}
1515

1616
export const convertToTitle = (pack: TitlePack): Title => {
17-
return {
18-
type: "title",
19-
text: pack.rows[0].text,
20-
};
17+
return {
18+
type: "title",
19+
text: pack.rows[0].text,
20+
};
2121
};

0 commit comments

Comments
 (0)