mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-30 13:42:01 +03:00
2828492945
Fix for `build` CI on `twenty-chrome-extension` --------- Co-authored-by: Thaïs Guigon <guigon.thais@gmail.com>
16 lines
424 B
JavaScript
16 lines
424 B
JavaScript
module.exports = {
|
|
extends: ['../../.eslintrc.cjs', '../../.eslintrc.react.cjs'],
|
|
ignorePatterns: ['!**/*', 'node_modules', 'dist', '**/generated/*'],
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.tsx'],
|
|
parserOptions: {
|
|
project: ['packages/twenty-chrome-extension/tsconfig.{json,*.json}'],
|
|
},
|
|
rules: {
|
|
'@nx/workspace-explicit-boolean-predicates-in-if': 'warn',
|
|
},
|
|
},
|
|
],
|
|
};
|