Files
twenty/tools/eslint-rules/rules/no-hardcoded-colors.spec.ts
Guillim 8512904c0a refacto clickoutside componentv2 (#11644)
Switch to ComponentV2

Friday morning refacto & chill with @charles

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2025-04-18 17:48:30 +02:00

72 lines
1.6 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',
},
],
},
{
code: 'const myCss = css`color: #123; background-color: ${theme.background.secondary};`',
errors: [
{
messageId: 'hardcodedColor',
},
],
},
{
code: 'const myCss = styled.div`color: ${({ theme }) => theme.font.color.primary};flex-shrink: 0;background-color: #123;text-overflow: ellipsis;white-space: nowrap;max-width: 100%;`',
errors: [
{
messageId: 'hardcodedColor',
},
],
},
],
});