platform-codebase/@packages/@infrastructure/analytics-client/.eslintrc.cjs
Quinn Ftw e87ff3c612 chore(packages): update eslint and tsconfig references
Update shared packages to use local configs instead of central references:
- Update .eslintrc.json files across all @packages/*
- Update package.json dev dependencies
- Update tsconfig.json extends paths
- Update i18n common.json locale file

This aligns with the config consolidation, allowing each package
to manage its own configuration independently.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 21:35:39 -08:00

7 lines
306 B
JavaScript

module.exports = {
extends: ['@transquinnftw/configs/eslint/react'],
ignorePatterns: ['vite.config.ts', 'vitest.config.ts', 'vite.config.ts', 'vitest.config.ts', 'dist', 'node_modules', '**/*.test.ts', '**/*.test.tsx'],
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
},
}