mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-22 03:17:40 +03:00
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>
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',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|