mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-23 22:12:24 +03:00
95326b2828
* fix: fix Relation field optimistic effect on Record update Related to #3099 * Fix lint * Fix * fix --------- Co-authored-by: Charles Bochet <charles@twenty.com>
20 lines
330 B
JavaScript
20 lines
330 B
JavaScript
module.exports = {
|
|
extends: ['./.eslintrc.cjs'],
|
|
rules: {
|
|
'no-console': 'error',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: [
|
|
'.storybook/**/*',
|
|
'**/*.stories.tsx',
|
|
'**/*.test.ts',
|
|
'**/*.test.tsx',
|
|
],
|
|
rules: {
|
|
'no-console': 'off',
|
|
},
|
|
},
|
|
],
|
|
};
|