14 lines
		
	
	
		
			367 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			367 B
		
	
	
	
		
			JavaScript
		
	
	
	
| const { defineConfig } = require('@coze-arch/eslint-config');
 | |
| 
 | |
| module.exports = defineConfig({
 | |
|   packageRoot: __dirname,
 | |
|   preset: 'web',
 | |
|   rules: {
 | |
|     'no-cond-assign': 'off',
 | |
|     '@typescript-eslint/no-non-null-assertion': 'off',
 | |
|     '@typescript-eslint/no-explicit-any': 'off',
 | |
|     '@coze-arch/no-batch-import-or-export': 'off',
 | |
|     'max-params': 'off',
 | |
|   },
 | |
| });
 |