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:
Profpatsch 2024-02-11 17:31:42 +01:00
parent d2e3f8cd7b
commit 80c683c9ec
12 changed files with 383 additions and 3 deletions

View file

@ -0,0 +1,14 @@
{
"extends": ["eslint:recommended", "plugin:@typescript-eslint/strict-type-checked"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"project": true
},
"root": true,
"rules": {
"no-unused-vars": "warn",
"prefer-const": "warn",
"@typescript-eslint/no-unused-vars": "warn"
}
}