mirror of
				https://github.com/TriliumNext/Notes.git
				synced 2025-11-04 07:01:31 +08: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: {}
 | 
						|
    }
 | 
						|
];
 |