Skip to content

Commit 9f92c09

Browse files
committed
initial generator functionality
1 parent 43def95 commit 9f92c09

File tree

10 files changed

+2104
-1788
lines changed

10 files changed

+2104
-1788
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"editor.codeActionsOnSave": {
3-
"quickfix.biome": "explicit"
3+
"source.organizeImports.biome": "explicit",
4+
"source.fixAll.biome": "explicit"
45
},
56
"[typescript]": {
67
"editor.defaultFormatter": "biomejs.biome"

biome.json

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
3-
"organizeImports": {
4-
"enabled": true
2+
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
3+
"assist": {
4+
"actions": {
5+
"source": {
6+
"organizeImports": "on"
7+
}
8+
}
59
},
610
"linter": {
711
"enabled": true,
8-
"ignore": ["**/*.type-test.ts"],
912
"rules": {
1013
"recommended": true,
1114
"suspicious": {
1215
"noExplicitAny": "off"
16+
},
17+
"complexity": {
18+
"noBannedTypes": "off"
19+
},
20+
"correctness": {
21+
"useYield": "off"
22+
},
23+
"style": {
24+
"noNonNullAssertion": "off"
1325
}
1426
}
1527
},
@@ -20,6 +32,6 @@
2032
"defaultBranch": "main"
2133
},
2234
"files": {
23-
"include": ["src/**/*"]
35+
"includes": ["src/**/*"]
2436
}
2537
}

0 commit comments

Comments
 (0)