mirror of
				https://github.com/lingble/twenty.git
				synced 2025-11-04 06:37:56 +00:00 
			
		
		
		
	* chore: use Nx workspace lint rules Closes #3162 * Fix lint * Fix lint on BE * Fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			731 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			731 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { TSESLint } from '@typescript-eslint/utils';
 | 
						|
 | 
						|
import { rule, RULE_NAME } from './styled-components-prefixed-with-styled';
 | 
						|
 | 
						|
const ruleTester = new TSESLint.RuleTester({
 | 
						|
  parser: require.resolve('@typescript-eslint/parser'),
 | 
						|
});
 | 
						|
 | 
						|
ruleTester.run(RULE_NAME, rule, {
 | 
						|
  valid: [
 | 
						|
    {
 | 
						|
      code: 'const StyledButton = styled.button``;',
 | 
						|
    },
 | 
						|
    {
 | 
						|
      code: 'const StyledComponent = styled.div``;',
 | 
						|
    },
 | 
						|
  ],
 | 
						|
  invalid: [
 | 
						|
    {
 | 
						|
      code: 'const Button = styled.button``;',
 | 
						|
      errors: [
 | 
						|
        {
 | 
						|
          messageId: 'noStyledPrefix',
 | 
						|
        },
 | 
						|
      ],
 | 
						|
    },
 | 
						|
    {
 | 
						|
      code: 'const Component = styled.div``;',
 | 
						|
      errors: [
 | 
						|
        {
 | 
						|
          messageId: 'noStyledPrefix',
 | 
						|
        },
 | 
						|
      ],
 | 
						|
    },
 | 
						|
  ],
 | 
						|
});
 |