mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-23 22:12:24 +03:00
8483cf0b4b
* chore: use Nx workspace lint rules Closes #3162 * Fix lint * Fix lint on BE * Fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
15 lines
267 B
JavaScript
15 lines
267 B
JavaScript
module.exports = {
|
|
extends: ['./.eslintrc.cjs'],
|
|
rules: {
|
|
'no-console': 'error',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['.storybook/**/*', '**/*.stories.tsx', '**/*.test.ts'],
|
|
rules: {
|
|
'no-console': 'off',
|
|
},
|
|
},
|
|
],
|
|
};
|