mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-28 23:03:41 +03:00
16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
|
module.exports = {
|
||
|
extends: ['../../.eslintrc.cjs', '../../.eslintrc.react.cjs'],
|
||
|
ignorePatterns: ['!**/*'],
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ['*.ts', '*.tsx'],
|
||
|
parserOptions: {
|
||
|
project: ['packages/twenty-emails/tsconfig.{json,*.json}'],
|
||
|
},
|
||
|
rules: {
|
||
|
'@nx/dependency-checks': 'error',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|