first commit

This commit is contained in:
yehongyu
2026-07-20 14:40:17 +08:00
commit 50fd043a2d
55 changed files with 7786 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
// @ts-check Let TS check this config file
import zotero from "@zotero-plugin/eslint-config";
export default zotero({
overrides: [
{
files: ["**/*.ts"],
rules: {
// We disable this rule here because the template
// contains some unused examples and variables
"@typescript-eslint/no-unused-vars": "off",
},
},
],
});