Removed eslint disable comment from the index file and updated the eslint ignore list to exclude the serverless driver index file. This ensures the file is skipped during linting without unnecessary inline comments.
109 lines
3.1 KiB
JavaScript
109 lines
3.1 KiB
JavaScript
module.exports = {
|
|
plugins: ['@stylistic'],
|
|
extends: ['../../.eslintrc.cjs'],
|
|
ignorePatterns: [
|
|
'src/engine/workspace-manager/demo-objects-prefill-data/**',
|
|
'src/engine/seeder/data-seeds/**',
|
|
'src/engine/seeder/metadata-seeds/**',
|
|
'src/engine/core-modules/serverless/drivers/constants/base-typescript-project/src/index.ts',
|
|
],
|
|
overrides: [
|
|
{
|
|
files: ['*.ts'],
|
|
parserOptions: {
|
|
project: ['packages/twenty-server/tsconfig.json'],
|
|
},
|
|
rules: {
|
|
'no-restricted-imports': [
|
|
'error',
|
|
{
|
|
patterns: [
|
|
{
|
|
group: ['**../'],
|
|
message: 'Relative imports are not allowed.',
|
|
},
|
|
{
|
|
group: ['lodash'],
|
|
message:
|
|
"Please use the standalone lodash package (for instance: `import groupBy from 'lodash.groupby'` instead of `import { groupBy } from 'lodash'`)",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
|
|
'@stylistic/linebreak-style': ['error', 'unix'],
|
|
'@stylistic/lines-between-class-members': [
|
|
'error',
|
|
{
|
|
enforce: [{ blankLine: 'always', prev: 'method', next: 'method' }],
|
|
},
|
|
],
|
|
'@stylistic/padding-line-between-statements': [
|
|
'error',
|
|
{ blankLine: 'always', prev: '*', next: 'return' },
|
|
{ blankLine: 'always', prev: ['const', 'let', 'var'], next: '*' },
|
|
{
|
|
blankLine: 'any',
|
|
prev: ['const', 'let', 'var'],
|
|
next: ['const', 'let', 'var'],
|
|
},
|
|
{ blankLine: 'always', prev: '*', next: ['interface', 'type'] },
|
|
],
|
|
|
|
'import/order': [
|
|
'error',
|
|
{
|
|
'newlines-between': 'always',
|
|
groups: [
|
|
'builtin',
|
|
'external',
|
|
'internal',
|
|
'type',
|
|
'parent',
|
|
'sibling',
|
|
'object',
|
|
'index',
|
|
],
|
|
pathGroups: [
|
|
{
|
|
pattern: '@nestjs/**',
|
|
group: 'builtin',
|
|
position: 'before',
|
|
},
|
|
{
|
|
pattern: '**/interfaces/**',
|
|
group: 'type',
|
|
position: 'before',
|
|
},
|
|
{
|
|
pattern: 'src/**',
|
|
group: 'parent',
|
|
position: 'before',
|
|
},
|
|
{
|
|
pattern: './*',
|
|
group: 'sibling',
|
|
position: 'before',
|
|
},
|
|
],
|
|
distinctGroup: true,
|
|
warnOnUnassignedImports: true,
|
|
pathGroupsExcludedImportTypes: ['@nestjs/**'],
|
|
},
|
|
],
|
|
'simple-import-sort/imports': 'off',
|
|
'unicorn/filename-case': 'off',
|
|
'prefer-arrow/prefer-arrow-functions': 'off',
|
|
'@nx/workspace-max-consts-per-file': 'off',
|
|
'@nx/workspace-inject-workspace-repository': 'warn',
|
|
},
|
|
},
|
|
{
|
|
files: ['scripts/**/*.ts'],
|
|
parserOptions: {
|
|
project: ['packages/twenty-server/tsconfig.scripts.json'],
|
|
},
|
|
},
|
|
],
|
|
};
|