first commit
This commit is contained in:
60
.vscode/settings.json
vendored
Normal file
60
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
// Dart & Flutter
|
||||
"dart.flutterSdkPath": null,
|
||||
"dart.openDevTools": "flutter",
|
||||
"dart.previewFlutterUiGuides": true,
|
||||
"dart.previewFlutterUiGuidesCustomTracking": true,
|
||||
"dart.showInspectorNotificationsForWidgetErrors": true,
|
||||
"dart.hotReloadOnSave": "always",
|
||||
"dart.flutterHotReloadOnSave": "always",
|
||||
"dart.debugExternalPackageLibraries": false,
|
||||
"dart.debugSdkLibraries": false,
|
||||
|
||||
// Formatierung
|
||||
"editor.formatOnSave": true,
|
||||
"editor.formatOnType": true,
|
||||
"editor.rulers": [80, 120],
|
||||
"editor.wordWrap": "wordWrapColumn",
|
||||
"editor.wordWrapColumn": 120,
|
||||
"editor.bracketPairColorization.enabled": true,
|
||||
"editor.guides.bracketPairs": true,
|
||||
|
||||
// Dart-spezifisch
|
||||
"[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"
|
||||
},
|
||||
|
||||
// File Explorer
|
||||
"files.exclude": {
|
||||
"**/.dart_tool": true,
|
||||
"**/.packages": true,
|
||||
"**/.pub": true,
|
||||
"**/build": true,
|
||||
"**/*.freezed.dart": true,
|
||||
"**/*.g.dart": true
|
||||
},
|
||||
|
||||
// Linting
|
||||
"dart.analysisExcludedFolders": [
|
||||
"app/build",
|
||||
"app/.dart_tool",
|
||||
"backend/target"
|
||||
],
|
||||
|
||||
// Emulator
|
||||
"dart.flutterRunAdditionalArgs": [
|
||||
"--enable-software-rendering"
|
||||
],
|
||||
|
||||
// Testing
|
||||
"dart.testAdditionalArgs": [
|
||||
"--concurrency=4"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user