Skip to main content
Glama
eslint.config.js1.26 kB
import tseslint from '@typescript-eslint/eslint-plugin'; import tsparser from '@typescript-eslint/parser'; export default [ { files: ['src/**/*.ts'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 2020, sourceType: 'module', project: './tsconfig.json', }, }, plugins: { '@typescript-eslint': tseslint, }, rules: { // TypeScript recommended rules '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], // Best practices 'no-console': 'off', // Allow console for MCP server logging 'prefer-const': 'error', 'no-var': 'error', }, }, { files: ['tests/**/*.ts'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 2020, sourceType: 'module', }, }, plugins: { '@typescript-eslint': tseslint, }, rules: { '@typescript-eslint/no-explicit-any': 'off', // Allow any in tests '@typescript-eslint/no-unused-vars': 'off', }, }, ];

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/robinmordasiewicz/f5cloudstatus-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server