mirror of
				https://github.com/lingble/twenty.git
				synced 2025-10-31 12:47:58 +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>
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { TSESLint } from '@typescript-eslint/utils';
 | |
| 
 | |
| import { rule, RULE_NAME } from './no-hardcoded-colors';
 | |
| 
 | |
| const ruleTester = new TSESLint.RuleTester({
 | |
|   parser: require.resolve('@typescript-eslint/parser'),
 | |
| });
 | |
| 
 | |
| ruleTester.run(RULE_NAME, rule, {
 | |
|   valid: [
 | |
|     {
 | |
|       code: 'const color = theme.background.secondary;',
 | |
|     },
 | |
|   ],
 | |
|   invalid: [
 | |
|     {
 | |
|       code: 'const color = "rgb(154,205,50)";',
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'hardcodedColor',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|     {
 | |
|       code: 'const color = { test: "rgb(154,205,50)", test2: "#ADFF2F" }',
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'hardcodedColor',
 | |
|         },
 | |
|         {
 | |
|           messageId: 'hardcodedColor',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|     {
 | |
|       code: 'const color = { test: `rgb(${r},${g},${b})`, test2: `#ADFF${test}` }',
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'hardcodedColor',
 | |
|         },
 | |
|         {
 | |
|           messageId: 'hardcodedColor',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|     {
 | |
|       code: 'const color = "#ADFF2F";',
 | |
|       errors: [
 | |
|         {
 | |
|           messageId: 'hardcodedColor',
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|   ],
 | |
| });
 |