15 lines
		
	
	
		
			324 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			324 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// @ts-check
 | 
						|
import withNuxt from "./.nuxt/eslint.config.mjs";
 | 
						|
 | 
						|
export default withNuxt(
 | 
						|
  // Your custom configs here
 | 
						|
  {
 | 
						|
    rules: {
 | 
						|
      "vue/html-self-closing": "off",
 | 
						|
      "vue/html-closing-bracket-newline": "off",
 | 
						|
      "@typescript-eslint/no-explicit-any": "off",
 | 
						|
      'import/no-duplicates': 'off'
 | 
						|
    },
 | 
						|
  }
 | 
						|
);
 |