Skip to content

Commit 89564bd

Browse files
committed
feat: add .fvmrc for Flutter version management and update .gitignore and .vscode/settings.json for FVM integration
1 parent ba4749f commit 89564bd

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

client/.fvmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"flutter": "3.38.8"
3+
}

client/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,7 @@ packages/*/build
4949

5050
.claude
5151
CLAUDE.md
52-
.design-docs
52+
.design-docs
53+
54+
# FVM Version Cache
55+
.fvm/

client/.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"dart.flutterSdkPath": null,
2+
"dart.flutterSdkPath": ".fvm/versions/3.38.8",
33
"dart.lineLength": 120,
44
"editor.defaultFormatter": "Dart-Code.dart-code",
55
"files.exclude": {
@@ -19,5 +19,8 @@
1919
"extensions.autoUpdate": true,
2020
"[xml]": {
2121
"editor.defaultFormatter": "DotJoshJohnson.xml"
22+
},
23+
"[jsonc]": {
24+
"editor.defaultFormatter": "vscode.json-language-features"
2225
}
2326
}

0 commit comments

Comments
 (0)