mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 11:56:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			513 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			513 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}",
 | 
						|
              "{projectRoot}/vite.config.{js,ts,mjs,mts}"
 | 
						|
            ]
 | 
						|
          }
 | 
						|
        ]
 | 
						|
      },
 | 
						|
      "languageOptions": {
 | 
						|
        "parser": (await import('jsonc-eslint-parser'))
 | 
						|
      }
 | 
						|
    }
 | 
						|
];
 |