| 
							
							const { defineConfig } = require('@coze-arch/eslint-config');
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							module.exports = defineConfig({
 | 
						
						
						
						
							 | 
							
							  packageRoot: __dirname,
 | 
						
						
						
						
							 | 
							
							  preset: 'web',
 | 
						
						
						
						
							 | 
							
							  rules: {},
 | 
						
						
						
						
							 | 
							
							  overrides: [
 | 
						
						
						
						
							 | 
							
							    {
 | 
						
						
						
						
							 | 
							
							      files: ['**/*.test.ts', '**/*.test.tsx'],
 | 
						
						
						
						
							 | 
							
							      rules: {
 | 
						
						
						
						
							 | 
							
							        '@typescript-eslint/naming-convention': 'off',
 | 
						
						
						
						
							 | 
							
							      },
 | 
						
						
						
						
							 | 
							
							    },
 | 
						
						
						
						
							 | 
							
							  ],
 | 
						
						
						
						
							 | 
							
							});
 |