mirror of
				https://github.com/lingble/twenty.git
				synced 2025-10-31 04:37:56 +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>
		
			
				
	
	
		
			45 lines
		
	
	
		
			867 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			867 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { TSESLint } from '@typescript-eslint/utils';
 | |
| 
 | |
| import { rule, RULE_NAME } from './no-state-useref';
 | |
| 
 | |
| const ruleTester = new TSESLint.RuleTester({
 | |
|   parser: require.resolve('@typescript-eslint/parser'),
 | |
| });
 | |
| 
 | |
| ruleTester.run(RULE_NAME, rule, {
 | |
|   valid: [
 | |
|     {
 | |
|       code: 'const scrollableRef = useRef<HTMLDivElement>(null);',
 | |
|     },
 | |
|     {
 | |
|       code: 'const ref = useRef<HTMLInputElement>(null);',
 | |
|     },
 | |
|   ],
 | |
|   invalid: [
 | |
|     {
 | |
|       code: 'const ref = useRef(null);',
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'noStateUseRef',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|     {
 | |
|       code: 'const ref = useRef<Boolean>(null);',
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'noStateUseRef',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|     {
 | |
|       code: "const ref = useRef<string>('');",
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'noStateUseRef',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|   ],
 | |
| });
 |