WhatsApp Web MCP

by fyimail
Verified
MIT License
64
2
  • Linux
  • Apple
module.exports = { parser: '@typescript-eslint/parser', parserOptions: { project: 'tsconfig.json', sourceType: 'module', ecmaVersion: 2020, tsconfigRootDir: __dirname, }, plugins: ['@typescript-eslint/eslint-plugin', 'jest'], extends: [ 'plugin:@typescript-eslint/recommended', 'plugin:jest/recommended', 'prettier', 'plugin:prettier/recommended', ], root: true, env: { node: true, jest: true, }, ignorePatterns: [ '.eslintrc.js', 'jest.config.js', 'dist/**/*', 'node_modules/**/*', 'test/**/*', 'coverage/**/*' ], rules: { '@typescript-eslint/interface-name-prefix': 'off', '@typescript-eslint/explicit-function-return-type': 'error', '@typescript-eslint/explicit-module-boundary-types': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-unused-vars': ['error', { 'argsIgnorePattern': '^_' }], 'prettier/prettier': ['error', { 'endOfLine': 'auto', 'singleQuote': true, 'trailingComma': 'all', 'printWidth': 100, }], }, };