Migrate to a D3-based graph renderer

This commit is contained in:
2024-02-03 20:47:22 +01:00
parent b68f84bc98
commit be1cd8b39f
14 changed files with 1035 additions and 51 deletions

12
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
env: {
browser: true,
},
root: true,
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
rules: {
'@typescript-eslint/no-explicit-any': 'warn',
},
};