mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:35:00 -04:00 
			
		
		
		
	* chore(deps): update dependency eslint-plugin-unicorn to v52 * chore: linting --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			915 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			915 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|   parser: '@typescript-eslint/parser',
 | |
|   parserOptions: {
 | |
|     project: 'tsconfig.json',
 | |
|     sourceType: 'module',
 | |
|     tsconfigRootDir: __dirname,
 | |
|   },
 | |
|   plugins: ['@typescript-eslint/eslint-plugin'],
 | |
|   extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended', 'plugin:unicorn/recommended'],
 | |
|   root: true,
 | |
|   env: {
 | |
|     node: true,
 | |
|   },
 | |
|   ignorePatterns: ['.eslintrc.js'],
 | |
|   rules: {
 | |
|     '@typescript-eslint/interface-name-prefix': 'off',
 | |
|     '@typescript-eslint/explicit-function-return-type': 'off',
 | |
|     '@typescript-eslint/explicit-module-boundary-types': 'off',
 | |
|     '@typescript-eslint/no-explicit-any': 'off',
 | |
|     '@typescript-eslint/no-floating-promises': 'error',
 | |
|     'unicorn/prefer-module': 'off',
 | |
|     'unicorn/prevent-abbreviations': 'off',
 | |
|     'unicorn/no-process-exit': 'off',
 | |
|     'unicorn/import-style': 'off',
 | |
|     curly: 2,
 | |
|     'prettier/prettier': 0,
 | |
|   },
 | |
| };
 |