WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 6e7fef6

Browse files
authored
Chore fix publish (#64)
* chore: fix publish * fix: linter and formatter
1 parent eae7cf0 commit 6e7fef6

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.editorconfig

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ root = true
66
[*]
77
indent_style = space
88
indent_size = 2
9-
end_of_line = crlf
9+
end_of_line = lf
1010
charset = utf-8
11+
insert_final_newline = true
12+
max_line_length = 100
13+
14+
[*.md]
15+
max_line_length = 0
1116
trim_trailing_whitespace = false
12-
insert_final_newline = false
17+
18+
[COMMIT_EDITMSG]
19+
max_line_length = 0

src/react/ColorCalendar.stories.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import type { Meta, StoryObj } from "@storybook/react";
22
import { useCallback, useId, useMemo, useState } from "react";
33
import { fn } from "storybook/test";
4-
import { generateDynamicEvents, generateDynamicEventsForMonth } from "../stories/generateDynamicEvents";
4+
import {
5+
generateDynamicEvents,
6+
generateDynamicEventsForMonth,
7+
} from "../stories/generateDynamicEvents";
58
import type { EventData } from "../types";
69
import ColorCalendar from "./ColorCalendar";
710

0 commit comments

Comments
 (0)