mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 02:37:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			89 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|     parser: '@typescript-eslint/parser', // Specifies the ESLint parser
 | |
|     extends: [
 | |
|         'airbnb',
 | |
|         'airbnb-typescript',
 | |
|         'airbnb/hooks',
 | |
|         'plugin:@typescript-eslint/recommended',
 | |
|         'plugin:vitest/recommended',
 | |
|         'prettier',
 | |
|     ],
 | |
|     plugins: ['@typescript-eslint', '@stylistic/js', 'react-refresh', 'import-alias'],
 | |
|     parserOptions: {
 | |
|         ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
 | |
|         sourceType: 'module', // Allows for the use of imports
 | |
|         ecmaFeatures: {
 | |
|             jsx: true, // Allows for the parsing of JSX
 | |
|         },
 | |
|         project: './tsconfig.json',
 | |
|     },
 | |
|     rules: {
 | |
|         '@typescript-eslint/no-explicit-any': 'off',
 | |
|         '@stylistic/js/comma-dangle': ['error', 'always-multiline'],
 | |
|         'arrow-body-style': 'off',
 | |
|         'class-methods-use-this': 'off',
 | |
|         'import/no-extraneous-dependencies': 'off',
 | |
|         'import/no-relative-packages': 'error',
 | |
|         'import/prefer-default-export': 'off', // TODO: remove this lint rule
 | |
|         'no-console': 'off',
 | |
|         'no-plusplus': 'off',
 | |
|         'no-prototype-builtins': 'off',
 | |
|         'no-restricted-exports': ['off', { restrictedNamedExports: ['default', 'then'] }],
 | |
|         'no-underscore-dangle': 'off',
 | |
|         'no-unsafe-optional-chaining': 'off',
 | |
|         'prefer-exponentiation-operator': 'off',
 | |
|         'prefer-regex-literals': 'off',
 | |
|         'react/destructuring-assignment': 'off',
 | |
|         'react/function-component-definition': 'off',
 | |
|         'react/jsx-no-bind': 'off',
 | |
|         'react/jsx-no-constructed-context-values': 'off',
 | |
|         'react/jsx-no-useless-fragment': 'off',
 | |
|         'react/jsx-props-no-spreading': 'off',
 | |
|         'react/no-unstable-nested-components': 'off',
 | |
|         'react/require-default-props': 'off',
 | |
|         '@typescript-eslint/no-unused-vars': [
 | |
|             'error',
 | |
|             {
 | |
|                 varsIgnorePattern: '^_',
 | |
|                 argsIgnorePattern: '^_',
 | |
|             },
 | |
|         ],
 | |
|         'vitest/prefer-to-be': 'off',
 | |
|         '@typescript-eslint/no-use-before-define': ['error', { functions: false, classes: false }],
 | |
|         'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
 | |
|         'import-alias/import-alias': [
 | |
|             'error',
 | |
|             {
 | |
|                 aliases: [
 | |
|                     // Must be kept consistent with tsconfig.json, vite.config.ts, and .prettierrc.js
 | |
|                     { alias: '@components/', matcher: '^src/alchemy-components/' },
 | |
|                     { alias: '@app/', matcher: '^src/app/' },
 | |
|                     { alias: '@conf/', matcher: '^src/conf/' },
 | |
|                     { alias: '@graphql/', matcher: '^src/graphql/' },
 | |
|                     { alias: '@graphql-mock/', matcher: '^src/graphql-mock/' },
 | |
|                     { alias: '@images/', matcher: '^src/images/' },
 | |
|                     { alias: '@providers/', matcher: '^src/providers/' },
 | |
|                     { alias: '@utils/', matcher: '^src/utils/' },
 | |
|                     { alias: '@types', matcher: '^src/types.generated' },
 | |
|                     { alias: '@src/', matcher: '^src/' },
 | |
|                 ],
 | |
|             },
 | |
|         ],
 | |
|     },
 | |
|     settings: {
 | |
|         react: {
 | |
|             version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use
 | |
|         },
 | |
|     },
 | |
|     overrides: [
 | |
|         {
 | |
|             files: ['src/app/searchV2/**/*.tsx', 'src/app/entityV2/**/*.tsx'],
 | |
|             rules: { 'import/no-cycle': 'off' },
 | |
|         },
 | |
|         {
 | |
|             files: ['src/alchemy-components/theme/**/*.ts'],
 | |
|             rules: { 'import/no-relative-packages': 'off', 'import-alias/import-alias': 'off' },
 | |
|         },
 | |
|     ],
 | |
| };
 | 
