UNPKG

@softeria/ms-365-mcp-server

Version:

A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API

44 lines (42 loc) 970 B
import js from '@eslint/js'; import globals from 'globals'; import tseslint from '@typescript-eslint/eslint-plugin'; import tsparser from '@typescript-eslint/parser'; export default [ js.configs.recommended, { files: ['**/*.{ts,tsx,js,mjs}'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 2022, sourceType: 'module', }, globals: { ...globals.node, ...globals.vitest, ...globals.jest, fs: 'readonly', }, }, plugins: { '@typescript-eslint': tseslint, }, rules: { ...tseslint.configs.recommended.rules, '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }], '@typescript-eslint/no-explicit-any': 'warn', 'no-console': 'off', }, }, { ignores: [ 'node_modules/**', 'dist/**', 'coverage/**', 'bin/**', 'src/generated/**', '.venv/**', ], }, ];