Skip to content

Commit

Permalink
🔥 remove(fvm_config.json): remove old FVM config file as it's no long…
Browse files Browse the repository at this point in the history
…er needed

✨ feat(.fvmrc): add new FVM config file to specify Flutter SDK version
🔧 fix(.gitignore): update FVM ignore rules to ignore the entire .fvm directory
🔧 fix(.vscode/settings.json): add Flutter SDK path to VSCode settings for FVM compatibility
  • Loading branch information
thekorn committed Feb 18, 2024
1 parent 3937681 commit 3192051
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
4 changes: 0 additions & 4 deletions .fvm/fvm_config.json

This file was deleted.

3 changes: 3 additions & 0 deletions .fvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"flutter": "3.16.7"
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,5 @@ build/
.classpath
.settings

.fvm/flutter_sdk
# FVM Version Cache
.fvm/
27 changes: 14 additions & 13 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off",
},
"editor.bracketPairColorization.enabled": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off"
},
"editor.bracketPairColorization.enabled": true,
"dart.flutterSdkPath": ".fvm/versions/3.16.7"
}

0 comments on commit 3192051

Please sign in to comment.