loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix quotation marks in launch.json (#13325)

Co-authored-by: zeripath <art27@cantab.net>

authored by

Elena Neuschild
zeripath
and committed by
GitHub
6c2c521b bb89fa1a

+5 -1
+1 -1
contrib/ide/vscode/launch.json
··· 19 19 "type": "go", 20 20 "request": "launch", 21 21 "mode": "debug", 22 - "buildFlags": "-tags=\"sqlite sqlite_unlock_notify\"", 22 + "buildFlags": "-tags='sqlite sqlite_unlock_notify'", 23 23 "port": 2345, 24 24 "host": "127.0.0.1", 25 25 "program": "${workspaceRoot}/main.go",
+4
contrib/ide/vscode/settings.json
··· 1 + { 2 + "go.buildTags": "'sqlite sqlite_unlock_notify'", 3 + "go.testFlags": ["-v"] 4 + }