Skip to content

Commit 331b32b

Browse files
committed
init commit
1 parent 21ea7a1 commit 331b32b

File tree

6 files changed

+235
-24
lines changed

6 files changed

+235
-24
lines changed

.vscode/settings.json

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"editor.defaultFormatter": "biomejs.biome",
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
33
"[javascript]": {
44
"editor.defaultFormatter": "biomejs.biome"
55
},
@@ -11,7 +11,8 @@
1111
},
1212
"editor.codeActionsOnSave": {
1313
"quickfix.biome": "explicit",
14-
"source.organizeImports.biome": "explicit"
14+
"source.organizeImports.biome": "explicit",
15+
"source.fixAll.biome": "explicit"
1516
},
1617
"editor.formatOnSave": true,
1718
"typescript.enablePromptUseWorkspaceTsdk": true,
@@ -23,5 +24,22 @@
2324
"terminal.integrated.localEchoStyle": "dim",
2425
"search.exclude": {
2526
"**/node_modules": true
26-
}
27-
}
27+
},
28+
"[javascriptreact]": {
29+
"editor.defaultFormatter": "biomejs.biome"
30+
},
31+
"[json]": {
32+
"editor.defaultFormatter": "biomejs.biome"
33+
},
34+
"[jsonc]": {
35+
"editor.defaultFormatter": "biomejs.biome"
36+
},
37+
"[css]": {
38+
"editor.defaultFormatter": "biomejs.biome"
39+
},
40+
"[graphql]": {
41+
"editor.defaultFormatter": "biomejs.biome"
42+
},
43+
"editor.formatOnPaste": true,
44+
"emmet.showExpandedAbbreviation": "never"
45+
}

LICENSE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
The MIT License (MIT)
22

33
Copyright (c) 2024 Midday Labs AB.
4+
Copyright (c) 2025 Eersnington.
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +19,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1819
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1920
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2021
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
22+
SOFTWARE.

biome.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
"enabled": true
55
},
66
"linter": {
7-
"ignore": ["node_modules", ".next", "packages/tsconfig"],
7+
"ignore": [
8+
"node_modules",
9+
".next",
10+
"packages/tsconfig"
11+
],
812
"enabled": true,
913
"rules": {
1014
"recommended": true,
@@ -24,5 +28,8 @@
2428
},
2529
"formatter": {
2630
"indentStyle": "space"
27-
}
28-
}
31+
},
32+
"extends": [
33+
"ultracite"
34+
]
35+
}

0 commit comments

Comments
 (0)