Skip to content

Commit 08b5a2d

Browse files
committed
format
1 parent 4fe994c commit 08b5a2d

File tree

3 files changed

+29
-15
lines changed

3 files changed

+29
-15
lines changed

dictionary/dictionary

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ ante:
7777
difference(n);
7878

7979
anu:
80-
`[`separates multiple possibilities, replacing another particle`]`(particle def);
80+
`[`separates multiple possibilities, replacing another particle`]`
81+
(particle def);
8182
or(particle def);
8283

8384
# # These are no longer in Linku
@@ -89,7 +90,9 @@ anu:
8990

9091
awen:
9192
# stay(v);
92-
remain(v linking) [predicate]; # Thanks to ilo Tani for telling me this is supposed to be a linking verb
93+
remain(v linking) [predicate];
94+
# Thanks to ilo Tani for telling me this is supposed to be a linking
95+
# verb
9396
# wait(v);
9497
pause(v) [object];
9598

@@ -391,7 +394,8 @@ ko:
391394
sticky(adj material);
392395

393396
kokosila:
394-
speak(v) a(d article singular) non-Toki Pona(adj qualifier) language(n singular);
397+
speak(v) a(d article singular) non-Toki Pona(adj qualifier)
398+
language(n singular);
395399

396400
kon:
397401
air(n);
@@ -422,7 +426,8 @@ kon:
422426
# ghost-related(adj opinion);
423427

424428
ku:
425-
interact(v) with(prep) the(d article) Toki Pona(adj qualifier) Dictionary(n singular);
429+
interact(v) with(prep) the(d article) Toki Pona(adj qualifier)
430+
Dictionary(n singular);
426431
the(d article) Toki Pona(adj qualifier) Dictionary(n);
427432

428433
kule:
@@ -472,7 +477,8 @@ kute:
472477
obeying(adj qualifier gerund-like);
473478

474479
la:
475-
`[`mark the previous statement as context to a following statement`]`(particle def);
480+
`[`mark the previous statement as context to a following statement`]`
481+
(particle def);
476482

477483
lanpan:
478484
take(v) [object];
@@ -1008,12 +1014,15 @@ noka:
10081014
root-related(adj opinion);
10091015

10101016
o:
1011-
`[`marks the end of a vocative `(`who is being spoken to`)``]`(particle def);
1012-
`[`marks the start of an imperative `(`command, wish, instruction`)``]`(particle def);
1017+
`[`marks the end of a vocative `(`who is being spoken to`)``]`
1018+
(particle def);
1019+
`[`marks the start of an imperative `(`command, wish, instruction`)``]`
1020+
(particle def);
10131021
should(particle def);
10141022

10151023
olin:
1016-
have(v) strong(adj opinion) emotional(adj opinion) bond(n singular) with(prep) [object];
1024+
have(v) strong(adj opinion) emotional(adj opinion) bond(n singular)
1025+
with(prep) [object];
10171026
respect(v) [object];
10181027

10191028
affection(n singular);
@@ -1209,8 +1218,10 @@ pona:
12091218
nicely(adv);
12101219

12111220
pu:
1212-
interact(v) with(prep) the(d article) book(n singular) titled(adj) Toki Pona`:` The Language of Good(n proper);
1213-
the(d article) book(n) titled(adj) Toki Pona`:` The Language of Good(n proper);
1221+
interact(v) with(prep) the(d article) book(n singular) titled(adj)
1222+
Toki Pona`:` The Language of Good(n proper);
1223+
the(d article) book(n) titled(adj)
1224+
Toki Pona`:` The Language of Good(n proper);
12141225

12151226
sama:
12161227
same(adj opinion);
@@ -1249,7 +1260,8 @@ selo:
12491260
boundary-related(adj opinion);
12501261

12511262
seme:
1252-
`[`indicate a question by marking missing info in a sentence`]`(particle def);
1263+
`[`indicate a question by marking missing info in a sentence`]`
1264+
(particle def);
12531265
what/what(n);
12541266
which/which(n);
12551267
what(d interrogative);
@@ -1387,7 +1399,8 @@ soweli:
13871399
beast-related(adj opinion);
13881400

13891401
su:
1390-
interact(v) with(prep) Sonja's(d possessive) story(adj qualifier) book(adj qualifier) series(n singular);
1402+
interact(v) with(prep) Sonja's(d possessive) story(adj qualifier)
1403+
book(adj qualifier) series(n singular);
13911404
Sonja's(d possessive) story(adj qualifier) book(adj qualifier) series(n);
13921405

13931406
suli:

dictionary/parser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,8 @@ function verbOnly(tagInside: Parser<unknown>): Parser<VerbForms> {
295295
};
296296
if (conjugations == null) {
297297
throw new ArrayResultError(
298-
`no verb conjugation found for "${verb}". consider providing all ` +
299-
"conjugations instead",
298+
`no verb conjugation found for "${verb}". consider providing ` +
299+
"all conjugations instead",
300300
);
301301
}
302302
if (verb !== conjugations.Infinitive) {

src/translator/preposition.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export function preposition(
2020
modifier.type === "adverbial"
2121
? (modifier.inWayPhrase == null ? modifier.adverb : throwError(
2222
new FilteredError(
23-
'"in [adjective] way" prepositional phrase modifying preposition',
23+
'"in [adjective] way" prepositional phrase modifying ' +
24+
"preposition",
2425
),
2526
))
2627
: throwError(new FilteredError("adjectives modifying preposition"))

0 commit comments

Comments
 (0)