mirror of
				https://github.com/home-assistant/frontend.git
				synced 2025-11-04 00:19:47 +00:00 
			
		
		
		
	* Update ts-eslint * Remove comments * Remove unused ts-ignore * Add undefined generic type instead of unknown * Remove unused undefined type * Fix type issues * Use undefined instead of void for subscribed return type
		
			
				
	
	
		
			17 lines
		
	
	
		
			390 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			390 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import rootConfig from "../eslint.config.mjs";
 | 
						|
 | 
						|
export default [
 | 
						|
  ...rootConfig,
 | 
						|
  {
 | 
						|
    rules: {
 | 
						|
      "no-console": "off",
 | 
						|
      "import/no-extraneous-dependencies": "off",
 | 
						|
      "import/extensions": "off",
 | 
						|
      "import/no-dynamic-require": "off",
 | 
						|
      "global-require": "off",
 | 
						|
      "@typescript-eslint/no-require-imports": "off",
 | 
						|
      "prefer-arrow-callback": "off",
 | 
						|
    },
 | 
						|
  },
 | 
						|
];
 |