something

This commit is contained in:
Dr-Blank 2024-05-08 05:03:49 -04:00
parent dbf4ce1959
commit a720c977c2
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
115 changed files with 8819 additions and 1 deletions

25
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "whispering_pages",
"request": "launch",
"type": "dart"
},
{
"name": "whispering_pages (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "whispering_pages (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}

View file

@ -3,5 +3,10 @@
"activityBar.background": "#5A1021",
"titleBar.activeBackground": "#7E162E",
"titleBar.activeForeground": "#FEFBFC"
}
},
"files.exclude": {
"**/*.freezed.dart": true,
"**/*.g.dart": true
},
"cSpell.words": ["Autovalidate", "mocktail", "riverpod", "shelfsdk"]
}

37
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,37 @@
{
"version": "2.0.0",
"tasks": [
{
"icon": { "id": "eye-watch", "color": "terminal.ansiYellow" },
"label": "build_runner watch",
"type": "shell",
"command": "dart run build_runner watch",
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Running build_runner watch for code generation",
"presentation": {
"revealProblems": "onProblem",
"reveal": "silent",
"panel": "dedicated"
},
"runOptions": {
"instanceLimit": 1,
"runOn": "folderOpen",
"reevaluateOnRerun": true
},
"problemMatcher": {
"owner": "dart",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
}
}
]
}