mirror of
				https://github.com/lingble/twenty.git
				synced 2025-10-31 20:57:55 +00:00 
			
		
		
		
	 8483cf0b4b
			
		
	
	8483cf0b4b
	
	
	
		
			
			* chore: use Nx workspace lint rules Closes #3162 * Fix lint * Fix lint on BE * Fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
		
			
				
	
	
		
			84 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { TSESLint } from '@typescript-eslint/utils';
 | |
| 
 | |
| import { rule, RULE_NAME } from '../rules/effect-components';
 | |
| 
 | |
| const ruleTester = new TSESLint.RuleTester({
 | |
|   parser: require.resolve('@typescript-eslint/parser'),
 | |
|   parserOptions: {
 | |
|     ecmaFeatures: {
 | |
|       jsx: true,
 | |
|     },
 | |
|   },
 | |
| });
 | |
| 
 | |
| ruleTester.run(RULE_NAME, rule, {
 | |
|   valid: [
 | |
|     {
 | |
|       code: `const TestComponentEffect = () => <></>;`,
 | |
|     },
 | |
|     {
 | |
|       code: `const TestComponent = () => <div></div>;`,
 | |
|     },
 | |
|     {
 | |
|       code: `export const useUpdateEffect = () => null;`,
 | |
|     },
 | |
|     {
 | |
|       code: `export const useUpdateEffect = () => <></>;`,
 | |
|     },
 | |
|     {
 | |
|       code: `const TestComponent = () => <><div></div></>;`,
 | |
|     },
 | |
|     {
 | |
|       code: `const TestComponentEffect = () => null;`,
 | |
|     },
 | |
|     {
 | |
|       code: `const TestComponentEffect = () => { 
 | |
|         useEffect(() => {}, []);
 | |
| 
 | |
|         return null; 
 | |
|       }`,
 | |
|     },
 | |
|     {
 | |
|       code: `const TestComponentEffect = () => { 
 | |
|         useEffect(() => {}, []);
 | |
|         
 | |
|         return <></>; 
 | |
|       }`,
 | |
|     },
 | |
|     {
 | |
|       code: `const TestComponentEffect = () => { 
 | |
|         useEffect(() => {}, []);
 | |
|         
 | |
|         return <></>; 
 | |
|       }`,
 | |
|     },
 | |
|     {
 | |
|       code: `const TestComponentEffect = () => { 
 | |
|         useEffect(() => {}, []);
 | |
|         
 | |
|         return null; 
 | |
|       }`,
 | |
|     },
 | |
|   ],
 | |
|   invalid: [
 | |
|     {
 | |
|       code: 'const TestComponent = () => <></>;',
 | |
|       output: 'const TestComponentEffect = () => <></>;',
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'addEffectSuffix',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|     {
 | |
|       code: 'const TestComponentEffect = () => <><div></div></>;',
 | |
|       output: 'const TestComponent = () => <><div></div></>;',
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'removeEffectSuffix',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|   ],
 | |
| });
 |