mirror of
				https://github.com/theoludwig/programming-challenges.git
				synced 2025-09-11 23:11:21 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			452 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			452 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import typescriptESLint from "typescript-eslint"
 | |
| import configConventions from "eslint-config-conventions"
 | |
| 
 | |
| export default typescriptESLint.config(
 | |
|   ...configConventions,
 | |
|   {
 | |
|     ignores: ["challenges/**", "templates/**"],
 | |
|   },
 | |
|   {
 | |
|     files: ["**/*.ts", "**/*.tsx"],
 | |
|     languageOptions: {
 | |
|       parser: typescriptESLint.parser,
 | |
|       parserOptions: {
 | |
|         projectService: true,
 | |
|         tsconfigRootDir: import.meta.dirname,
 | |
|       },
 | |
|     },
 | |
|   }
 | |
| )
 |