Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit 09f511a

Browse files
break: simplify interface, drop file IO, accept common mcp server config (#38)
1 parent b431314 commit 09f511a

26 files changed

+1537
-3736
lines changed

.eslintrc.cjs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@ module.exports = {
2424
],
2525
rules: {
2626
"no-instanceof/no-instanceof": 2,
27+
"@typescript-eslint/naming-convention": [
28+
"error",
29+
{
30+
"selector": "memberLike",
31+
"modifiers": ["private"],
32+
"format": ["camelCase"],
33+
"leadingUnderscore": "require"
34+
}
35+
],
2736
"@typescript-eslint/explicit-module-boundary-types": 0,
2837
"@typescript-eslint/no-empty-function": 0,
2938
"@typescript-eslint/no-shadow": 0,
@@ -38,7 +47,7 @@ module.exports = {
3847
"import/extensions": [2, "ignorePackages"],
3948
"import/no-extraneous-dependencies": [
4049
"error",
41-
{ devDependencies: ["**/*.test.ts", "examples/**/*.ts"] },
50+
{ devDependencies: ["**/*.test.ts", "__tests__/**/*.ts", "examples/**/*.ts"] },
4251
],
4352
"import/no-unresolved": 0,
4453
"import/prefer-default-export": 0,

.prettierrc.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"editor.formatOnSave": true,
4+
"typescript.tsdk": "node_modules/typescript/lib"
5+
}

0 commit comments

Comments
 (0)