mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
		
			326 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			326 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
								 | 
							
								import playwright from "eslint-plugin-playwright";
							 | 
						||
| 
								 | 
							
								import baseConfig from "../../eslint.config.mjs";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								export default [
							 | 
						||
| 
								 | 
							
								    playwright.configs["flat/recommended"],
							 | 
						||
| 
								 | 
							
								    ...baseConfig,
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        files: [
							 | 
						||
| 
								 | 
							
								            "**/*.ts",
							 | 
						||
| 
								 | 
							
								            "**/*.js"
							 | 
						||
| 
								 | 
							
								        ],
							 | 
						||
| 
								 | 
							
								        // Override or add rules here
							 | 
						||
| 
								 | 
							
								        rules: {}
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								];
							 |