mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
- remove worksapce:* dependencies from published packages - Use common tsconfig.ts in create-twenty-app - Increase version to 0.4.4
20 lines
334 B
JavaScript
20 lines
334 B
JavaScript
import baseConfig from '../../eslint.config.mjs';
|
|
|
|
export default [
|
|
...baseConfig,
|
|
{
|
|
ignores: ['**/dist/**'],
|
|
},
|
|
{
|
|
files: ['**/*.{js,jsx,ts,tsx}'],
|
|
rules: {
|
|
'prettier/prettier': 'error',
|
|
},
|
|
},
|
|
{
|
|
rules: {
|
|
'no-console': 'off',
|
|
},
|
|
ignores: ['src/**/*.ts', '!src/cli/**/*.ts'],
|
|
},
|
|
];
|