mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-23 05:53:31 +03:00
100 lines
2.5 KiB
JavaScript
100 lines
2.5 KiB
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
extends: ['plugin:prettier/recommended'],
|
||
|
plugins: ['@nx', 'prefer-arrow', 'simple-import-sort', 'unused-imports'],
|
||
|
rules: {
|
||
|
'func-style': ['error', 'declaration', { allowArrowFunctions: true }],
|
||
|
'no-console': ['warn', { allow: ['group', 'groupCollapsed', 'groupEnd'] }],
|
||
|
'no-unused-vars': 'off',
|
||
|
'no-control-regex': 0,
|
||
|
'no-undef': 'off',
|
||
|
|
||
|
'@nx/enforce-module-boundaries': [
|
||
|
'error',
|
||
|
{
|
||
|
enforceBuildableLibDependency: true,
|
||
|
allow: [],
|
||
|
depConstraints: [
|
||
|
{
|
||
|
sourceTag: '*',
|
||
|
onlyDependOnLibsWithTags: ['*'],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
|
||
|
'prefer-arrow/prefer-arrow-functions': [
|
||
|
'error',
|
||
|
{
|
||
|
disallowPrototype: true,
|
||
|
singleReturnOnly: false,
|
||
|
classPropertiesAllowed: false,
|
||
|
},
|
||
|
],
|
||
|
|
||
|
'simple-import-sort/imports': [
|
||
|
'error',
|
||
|
{
|
||
|
groups: [
|
||
|
['^react', '^@?\\w'],
|
||
|
['^(@|~)(/.*|$)'],
|
||
|
['^\\u0000'],
|
||
|
['^\\.\\.(?!/?$)', '^\\.\\./?$'],
|
||
|
['^\\./(?=.*/)(?!/?$)', '^\\.(?!/?$)', '^\\./?$'],
|
||
|
['^.+\\.?(css)$'],
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
'simple-import-sort/exports': 'error',
|
||
|
|
||
|
'unused-imports/no-unused-imports': 'warn',
|
||
|
'unused-imports/no-unused-vars': [
|
||
|
'warn',
|
||
|
{
|
||
|
vars: 'all',
|
||
|
varsIgnorePattern: '^_',
|
||
|
args: 'after-used',
|
||
|
argsIgnorePattern: '^_',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ['**/*.ts', '**/*.tsx'],
|
||
|
extends: ['plugin:@nx/typescript'],
|
||
|
rules: {
|
||
|
'@typescript-eslint/ban-ts-comment': 'error',
|
||
|
'@typescript-eslint/interface-name-prefix': 'off',
|
||
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
||
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||
|
'@typescript-eslint/no-unused-vars': [
|
||
|
'warn',
|
||
|
{
|
||
|
vars: 'all',
|
||
|
varsIgnorePattern: '^_',
|
||
|
args: 'after-used',
|
||
|
argsIgnorePattern: '^_',
|
||
|
},
|
||
|
],
|
||
|
'@typescript-eslint/consistent-type-imports': [
|
||
|
'error',
|
||
|
{ prefer: 'no-type-imports' },
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
files: ['*.js', '*.jsx'],
|
||
|
extends: ['plugin:@nx/javascript'],
|
||
|
rules: {},
|
||
|
},
|
||
|
{
|
||
|
files: ['*.spec.@(ts|tsx|js|jsx)', '*.test.@(ts|tsx|js|jsx)'],
|
||
|
env: {
|
||
|
jest: true,
|
||
|
},
|
||
|
rules: {},
|
||
|
},
|
||
|
],
|
||
|
};
|