feat(declib): initial mastodon bot experiment
No default.nix yet, just for development. Change-Id: Ib8bd0057d697fecd083d5961e635c770b7638e08 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10803 Reviewed-by: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
d2e3f8cd7b
commit
80c683c9ec
12 changed files with 383 additions and 3 deletions
18
users/Profpatsch/.vscode/launch.json
vendored
Normal file
18
users/Profpatsch/.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
// 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": "run declib",
|
||||
"type": "node",
|
||||
"cwd": "${workspaceFolder}/declib",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "ninja",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
],
|
||||
}
|
||||
]
|
||||
}
|
||||
17
users/Profpatsch/.vscode/settings.json
vendored
17
users/Profpatsch/.vscode/settings.json
vendored
|
|
@ -8,7 +8,18 @@
|
|||
}
|
||||
],
|
||||
"sqltools.useNodeRuntime": true,
|
||||
"[haskell]": {
|
||||
"editor.formatOnSave": true
|
||||
}
|
||||
"editor.formatOnSave": true,
|
||||
"[typescript]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[javascript]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"purescript.codegenTargets": [
|
||||
"corefn"
|
||||
],
|
||||
"purescript.foreignExt": "nix"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue