| 1234567891011121314151617 |
- /**
- * Minimal ESLint flat config for monorepo
- */
- const js = require('@eslint/js');
- const tseslint = require('typescript-eslint');
- module.exports = tseslint.config(
- { ignores: ['**/dist/**', '**/.next/**', '**/node_modules/**'] },
- js.configs.recommended,
- ...tseslint.configs.recommended,
- {
- rules: {
- '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
- '@typescript-eslint/no-explicit-any': 'warn',
- },
- },
- );
|