add warp config, update to flutter 1.22

This commit is contained in:
hiddify-com
2024-05-31 13:41:35 +02:00
parent 218c6d49bc
commit e2b67c317b
21 changed files with 423 additions and 385 deletions

10
.vscode/launch.json vendored
View File

@@ -1,6 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "go Package",
"type": "go",
"request": "launch",
"mode": "auto",
"cwd": "./libcore",
"program": "./libcore/cli/main.go",
"args": ["build","-c","a.txt","-d","b.txt","--full-config"] ,
"buildFlags": "-tags with_clash_api,with_gvisor,with_quic,with_wireguard,with_grpc,with_ech,with_utls,with_reality_server"
},
{
"name": "Hiddify Dev",
"request": "launch",

21
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"dart.lineLength": 250,
"[dart]": {
"editor.defaultFormatter": "Dart-Code.dart-code",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.tabSize": 2,
"editor.rulers": [
250
],
"editor.detectIndentation": false,
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off"
},
"html.format.wrapLineLength": 250,
}