mirror of
				https://github.com/theoludwig/markdownlint-rule-relative-links.git
				synced 2025-09-09 19:39:29 +02:00 
			
		
		
		
	Fixes #10 BREAKING CHANGE: This package is now pure ESM BREAKING CHANGE: minimum supported Node.js >= 22.0.0
		
			
				
	
	
		
			14 lines
		
	
	
		
			371 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			371 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import typescriptESLint from "typescript-eslint"
 | |
| import configConventions from "eslint-config-conventions"
 | |
| 
 | |
| export default typescriptESLint.config(...configConventions, {
 | |
|   files: ["**/*.ts", "**/*.tsx"],
 | |
|   languageOptions: {
 | |
|     parser: typescriptESLint.parser,
 | |
|     parserOptions: {
 | |
|       projectService: true,
 | |
|       tsconfigRootDir: import.meta.dirname,
 | |
|     },
 | |
|   },
 | |
| })
 |