Files
twenty/packages/twenty-eslint-rules/rules/inject-workspace-repository.spec.ts
T
Félix Malfait c737028dd6 Move tools/eslint-rules to packages/twenty-eslint-rules (#17203)
## 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.)
2026-01-17 07:37:17 +01:00

78 lines
1.9 KiB
TypeScript

import { TSESLint } from '@typescript-eslint/utils';
import { rule, RULE_NAME } from './inject-workspace-repository';
const ruleTester = new TSESLint.RuleTester({
parser: require.resolve('@typescript-eslint/parser'),
});
ruleTester.run(RULE_NAME, rule, {
valid: [
{
code: `
class MyWorkspaceService {
constructor(@InjectWorkspaceRepository() private repository) {}
}
`,
filename: 'my.workspace-service.ts',
},
{
code: `
class AnotherWorkspaceService {
constructor(private myWorkspaceService: MyWorkspaceService) {}
}
`,
filename: 'another.workspace-service.ts',
},
],
invalid: [
{
code: `
class MyService {
constructor(@InjectWorkspaceRepository() private repository) {}
}
`,
filename: 'my.workspace-service.ts',
errors: [{ messageId: 'invalidClassName' }],
},
{
code: `
class MyWorkspaceService {
constructor(@InjectWorkspaceRepository() private repository) {}
}
`,
filename: 'my.service.ts',
errors: [{ messageId: 'invalidFileName' }],
},
{
code: `
class MyService {
constructor(@InjectWorkspaceRepository() private repository) {}
}
`,
filename: 'my.service.ts',
errors: [
{ messageId: 'invalidClassName' },
{ messageId: 'invalidFileName' },
],
},
{
code: `
class AnotherWorkspaceService {
constructor(private myWorkspaceService: MyWorkspaceService) {}
}
`,
filename: 'another.service.ts',
errors: [{ messageId: 'invalidFileName' }],
},
{
code: `
class AnotherService {
constructor(private myWorkspaceService: MyWorkspaceService) {}
}
`,
filename: 'another.workspace-service.ts',
errors: [{ messageId: 'invalidClassName' }],
},
],
});