Skip to content

Commit 058f80e

Browse files
authored
Merge pull request #207 from FrontEndDev-org/feat/v0.x
Feat/v0.x
2 parents 52c9f99 + 2c647e9 commit 058f80e

File tree

12 files changed

+266
-215
lines changed

12 files changed

+266
-215
lines changed

.editorconfig

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
13
root = true
24

35
[*]
46
charset = utf-8
57
end_of_line = lf
68
indent_size = 2
79
indent_style = space
8-
insert_final_newline = true
910
max_line_length = 120
10-
tab_width = 2
11+
insert_final_newline = true
1112
trim_trailing_whitespace = true

.eslintignore

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Macos
22
.DS_Store
33

4+
# Windows
5+
$RECYCLE.BIN/
6+
Desktop.ini
7+
ehthumbs.db
8+
Thumbs.db
9+
410
# Node
511
node_modules
612
package-lock.json
@@ -12,11 +18,9 @@ yarn.lock
1218
.env.*.local
1319

1420
# Log files
21+
/logs
1522
*.log
16-
npm-debug.log*
17-
yarn-debug.log*
18-
yarn-error.log*
19-
pnpm-debug.log*
23+
*.log.*
2024

2125
# Editor directories and files
2226
.idea

.gitignore

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Macos
22
.DS_Store
33

4+
# Windows
5+
$RECYCLE.BIN/
6+
Desktop.ini
7+
ehthumbs.db
8+
Thumbs.db
9+
410
# Node
511
node_modules
612

@@ -9,11 +15,9 @@ node_modules
915
.env.*.local
1016

1117
# Log files
18+
/logs
1219
*.log
13-
npm-debug.log*
14-
yarn-debug.log*
15-
yarn-error.log*
16-
pnpm-debug.log*
20+
*.log.*
1721

1822
# Editor directories and files
1923
.idea
@@ -26,9 +30,6 @@ pnpm-debug.log*
2630
/dist_*
2731
.cache
2832

29-
# library
30-
/lib
31-
3233
# testing
3334
/coverage
3435

.husky/pre-commit

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env sh
22
. "$(dirname -- "$0")/_/husky.sh"
33

4+
echo "node version = $(node -v)"
5+
echo "npm version = $(npm -v)"
46
npx lint-staged --allow-empty
57
npx tsc --noEmit

.prettierignore

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Macos
22
.DS_Store
33

4+
# Windows
5+
$RECYCLE.BIN/
6+
Desktop.ini
7+
ehthumbs.db
8+
Thumbs.db
9+
410
# Node
511
node_modules
612
package-lock.json
@@ -12,11 +18,9 @@ yarn.lock
1218
.env.*.local
1319

1420
# Log files
21+
/logs
1522
*.log
16-
npm-debug.log*
17-
yarn-debug.log*
18-
yarn-error.log*
19-
pnpm-debug.log*
23+
*.log.*
2024

2125
# Editor directories and files
2226
.idea

TODO.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1 @@
1-
- [ ] 支持 OneOf AllOf
2-
- [ ] 支持长度为一的必填参数展开 `type XXReqPath = { name: string }` -> `name: string`
3-
- [ ] openapi document validate
4-
- [ ] 接口 mock
5-
- [ ] 接口运行期类型检查
6-
- [ ] unplugin
7-
- [ ] vue hook
8-
- [ ] react hook
9-
- [ ] 自定义 printer
1+
<https://github.com/orgs/FrontEndDev-org/projects/1/views/1>

0 commit comments

Comments
 (0)