agent-master-mcp
Version:
Model Context Protocol server exposing agent-master functionality to AI assistants for managing MCP server configurations across development tools
45 lines (44 loc) • 959 B
JSON
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "error",
"noImplicitAnyLet": "error"
},
"style": {
"noVar": "error",
"useConst": "error",
"useExponentiationOperator": "error"
},
"correctness": {
"noUnusedVariables": "error",
"useExhaustiveDependencies": "off"
}
}
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100,
"lineEnding": "lf"
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"trailingCommas": "es5",
"semicolons": "always"
}
},
"files": {
"include": ["src/**/*", "scripts/**/*"],
"ignore": ["node_modules", "dist", "*.d.ts"]
}
}