c737028dd6
## Summary Moves the custom ESLint rules from `tools/eslint-rules` to `packages/twenty-eslint-rules` for better organization within the monorepo packages structure. ## Changes - Move `eslint-rules` from `tools/` to `packages/twenty-eslint-rules` - Use `loadWorkspaceRules` from `@nx/eslint-plugin` to load custom rules - Update all ESLint configs to use the `twenty/` rule prefix instead of `@nx/workspace-` - Update `project.json`, `jest.config.mjs` with new paths - Update `package.json` workspaces and `nx.json` cache inputs - Update Dockerfile reference ## Technical Details The custom ESLint rules are now loaded using Nx's `loadWorkspaceRules` utility which: - Handles TypeScript transpilation automatically - Allows loading workspace rules from any directory - Provides a cleaner approach than the previous `@nx/workspace-` convention ## Testing - Verified all 17 custom ESLint rules load correctly from the new location - Verified linting works on dependent packages (twenty-front, twenty-server, etc.)
84 lines
1.7 KiB
TypeScript
84 lines
1.7 KiB
TypeScript
import { TSESLint } from '@typescript-eslint/utils';
|
|
|
|
import { rule, RULE_NAME } from '../rules/effect-components';
|
|
|
|
const ruleTester = new TSESLint.RuleTester({
|
|
parser: require.resolve('@typescript-eslint/parser'),
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
},
|
|
});
|
|
|
|
ruleTester.run(RULE_NAME, rule, {
|
|
valid: [
|
|
{
|
|
code: `const TestComponentEffect = () => <></>;`,
|
|
},
|
|
{
|
|
code: `const TestComponent = () => <div></div>;`,
|
|
},
|
|
{
|
|
code: `export const useUpdateEffect = () => null;`,
|
|
},
|
|
{
|
|
code: `export const useUpdateEffect = () => <></>;`,
|
|
},
|
|
{
|
|
code: `const TestComponent = () => <><div></div></>;`,
|
|
},
|
|
{
|
|
code: `const TestComponentEffect = () => null;`,
|
|
},
|
|
{
|
|
code: `const TestComponentEffect = () => {
|
|
useEffect(() => {}, []);
|
|
|
|
return null;
|
|
}`,
|
|
},
|
|
{
|
|
code: `const TestComponentEffect = () => {
|
|
useEffect(() => {}, []);
|
|
|
|
return <></>;
|
|
}`,
|
|
},
|
|
{
|
|
code: `const TestComponentEffect = () => {
|
|
useEffect(() => {}, []);
|
|
|
|
return <></>;
|
|
}`,
|
|
},
|
|
{
|
|
code: `const TestComponentEffect = () => {
|
|
useEffect(() => {}, []);
|
|
|
|
return null;
|
|
}`,
|
|
},
|
|
],
|
|
invalid: [
|
|
{
|
|
code: 'const TestComponent = () => <></>;',
|
|
output: 'const TestComponentEffect = () => <></>;',
|
|
errors: [
|
|
{
|
|
messageId: 'addEffectSuffix',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
code: 'const TestComponentEffect = () => <><div></div></>;',
|
|
output: 'const TestComponent = () => <><div></div></>;',
|
|
errors: [
|
|
{
|
|
messageId: 'removeEffectSuffix',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|