mirror of
				https://github.com/home-assistant/frontend.git
				synced 2025-11-04 08:29:52 +00:00 
			
		
		
		
	* Flat config file * Plugin * prettier * Set eslint to latest version (non dev) * yarn dedupe * push changes from eslint type pr * dedupe
		
			
				
	
	
		
			17 lines
		
	
	
		
			387 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			387 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-var-requires": "off",
 | 
						|
      "prefer-arrow-callback": "off",
 | 
						|
    },
 | 
						|
  },
 | 
						|
];
 |