mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	
		
			
	
	
		
			24 lines
		
	
	
		
			454 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			454 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | import baseConfig from "../../eslint.config.mjs"; | ||
|  | 
 | ||
|  | export default [ | ||
|  |     ...baseConfig, | ||
|  |     { | ||
|  |       "files": [ | ||
|  |         "**/*.json" | ||
|  |       ], | ||
|  |       "rules": { | ||
|  |         "@nx/dependency-checks": [ | ||
|  |           "error", | ||
|  |           { | ||
|  |             "ignoredFiles": [ | ||
|  |               "{projectRoot}/eslint.config.{js,cjs,mjs}" | ||
|  |             ] | ||
|  |           } | ||
|  |         ] | ||
|  |       }, | ||
|  |       "languageOptions": { | ||
|  |         "parser": (await import('jsonc-eslint-parser')) | ||
|  |       } | ||
|  |     } | ||
|  | ]; |