Skip to main content
Glama

YouTrack MCP Server

by lucyfuur94
eslint.config.js1.9 kB
import js from '@eslint/js'; import tseslint from '@typescript-eslint/eslint-plugin'; import tsparser from '@typescript-eslint/parser'; export default [ js.configs.recommended, { files: ['**/*.ts', '**/*.tsx'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 2022, sourceType: 'module', project: './tsconfig.json', }, }, plugins: { '@typescript-eslint': tseslint, }, rules: { // TypeScript specific rules '@typescript-eslint/no-unused-vars': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-inferrable-types': 'off', '@typescript-eslint/no-non-null-assertion': 'warn', // General JavaScript rules 'no-console': 'off', // We use console.error for logging 'no-unused-vars': 'off', // Use TypeScript version instead 'prefer-const': 'error', 'no-var': 'error', 'object-shorthand': 'error', 'prefer-template': 'error', // Import rules 'sort-imports': ['error', { ignoreCase: false, ignoreDeclarationSort: false, ignoreMemberSort: false, memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'], }], // Formatting (basic - consider using Prettier for more comprehensive formatting) 'indent': ['error', 2], 'quotes': ['error', 'single'], 'semi': ['error', 'always'], 'comma-trailing': 'off', 'max-len': ['error', { code: 120 }], }, }, { files: ['**/*.js'], languageOptions: { ecmaVersion: 2022, sourceType: 'module', }, }, { ignores: [ 'node_modules/**', 'build/**', 'dist/**', '*.config.js', ], }, ];

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/lucyfuur94/youtrack-integration'

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