Add ESLint configuration, .gitignore, Deno configuration, and initial Jupyter notebook

This commit is contained in:
2026-02-05 09:38:24 -06:00
commit e8f4979ff3
5 changed files with 388 additions and 0 deletions

12
.eslintrc Normal file
View File

@@ -0,0 +1,12 @@
{
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}