Skip to content

Instantly share code, notes, and snippets.

@kboomska
Last active July 13, 2024 16:19
Show Gist options
  • Save kboomska/4e98e527b44219107a7cf84fe44816ff to your computer and use it in GitHub Desktop.
Save kboomska/4e98e527b44219107a7cf84fe44816ff to your computer and use it in GitHub Desktop.
VS Code Workspace Settings (JSON)
{
"[dart]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.links": true,
"editor.rulers": [
80
]
},
"dart.lineLength": 80,
"dart.doNotFormat": [
"**.g.dart",
"**.config.dart",
"**.mocks.dart"
],
"dart.flutterSdkPath": ".fvm/versions/3.19.5",
"search.exclude": {
"**/.fvm": true,
".dart_tool": true,
"coverage": true,
"build": true
},
"files.watcherExclude": {
"**/.fvm": true,
".dart_tool": true,
"coverage": true,
"build": true
},
"workbench.iconTheme": "material-icon-theme",
"editor.showDeprecated": false,
"explorer.compactFolders": false,
"explorer.copyRelativePathSeparator": "/",
"workbench.startupEditor": "none",
"editor.unicodeHighlight.allowedLocales": {
"ru": true
},
"git.openRepositoryInParentFolders": "always",
"files.associations": {
"*.drift": "sql"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment