16 lines
		
	
	
		
			514 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			514 B
		
	
	
	
		
			JavaScript
		
	
	
	
const { defineConfig } = require('@coze-arch/eslint-config');
 | 
						|
 | 
						|
module.exports = defineConfig({
 | 
						|
  packageRoot: __dirname,
 | 
						|
  preset: 'web',
 | 
						|
  rules: {
 | 
						|
    '@typescript-eslint/no-explicit-any': 'off',
 | 
						|
    '@typescript-eslint/consistent-type-assertions': 'off',
 | 
						|
    '@typescript-eslint/no-empty-function': 'off',
 | 
						|
    '@typescript-eslint/naming-convention': 'off',
 | 
						|
    'max-statements-per-line': 'off',
 | 
						|
    '@typescript-eslint/no-non-null-assertion': 'off',
 | 
						|
    '@typescript-eslint/unified-signatures': 'off',
 | 
						|
  },
 | 
						|
});
 |