mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 17:12:53 +03:00
bc3fe59312
* feat: added an enlint rule to enforce no-type-import * Update style-guide.mdx --------- Co-authored-by: aman1357 <101919821+aman1357@users.noreply.github.com>
101 lines
2.9 KiB
JavaScript
101 lines
2.9 KiB
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: 'tsconfig.json',
|
|
tsconfigRootDir: __dirname,
|
|
sourceType: 'module',
|
|
},
|
|
plugins: [
|
|
'@typescript-eslint/eslint-plugin',
|
|
'unused-imports',
|
|
'simple-import-sort',
|
|
'prefer-arrow',
|
|
'twenty',
|
|
],
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:prettier/recommended',
|
|
'plugin:storybook/recommended',
|
|
'react-app',
|
|
],
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
jest: true,
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['*.js', '*.jsx', '*.ts', '*.tsx'],
|
|
rules: {
|
|
'no-control-regex': 0,
|
|
'simple-import-sort/imports': [
|
|
'error',
|
|
{
|
|
groups: [
|
|
['^react', '^@?\\w'],
|
|
['^(@|~)(/.*|$)'],
|
|
['^\\u0000'],
|
|
['^\\.\\.(?!/?$)', '^\\.\\./?$'],
|
|
['^\\./(?=.*/)(?!/?$)', '^\\.(?!/?$)', '^\\./?$'],
|
|
['^.+\\.?(css)$']
|
|
]
|
|
}
|
|
],
|
|
'prefer-arrow/prefer-arrow-functions': [
|
|
'error',
|
|
{
|
|
"disallowPrototype": true,
|
|
"singleReturnOnly": false,
|
|
"classPropertiesAllowed": false
|
|
}
|
|
]
|
|
}
|
|
},
|
|
],
|
|
ignorePatterns: ['.eslintrc.js', 'codegen.js', '**/generated/*', '*.config.js'],
|
|
rules: {
|
|
'@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',
|
|
'simple-import-sort/imports': 'error',
|
|
'simple-import-sort/exports': 'error',
|
|
'twenty/effect-components': 'error',
|
|
'twenty/no-hardcoded-colors': 'error',
|
|
'twenty/no-spread-props': 'error',
|
|
'twenty/matching-state-variable': 'error',
|
|
'twenty/sort-css-properties-alphabetically': 'error',
|
|
'twenty/styled-components-prefixed-with-styled': 'error',
|
|
'func-style':['error', 'declaration', { 'allowArrowFunctions': true }],
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"no-unused-vars": "off",
|
|
"react-hooks/exhaustive-deps": [
|
|
"warn", {
|
|
"additionalHooks": "useRecoilCallback"
|
|
}
|
|
],
|
|
"unused-imports/no-unused-imports": "warn",
|
|
"unused-imports/no-unused-vars": [
|
|
"warn",
|
|
{ "vars": "all", "varsIgnorePattern": "^_", "args": "after-used", "argsIgnorePattern": "^_" }
|
|
],
|
|
'no-restricted-imports': [
|
|
'error',
|
|
{
|
|
'patterns': [
|
|
{
|
|
'group': ['@tabler/icons-react'],
|
|
'message': 'Icon imports are only allowed for `@/ui/icon`',
|
|
},
|
|
{
|
|
'group': ['react-hotkeys-hook'],
|
|
"importNames": ["useHotkeys"],
|
|
'message': 'Please use the custom wrapper: `useScopedHotkeys`',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
"@typescript-eslint/consistent-type-imports": ["error", { "prefer": "no-type-imports" }],
|
|
}
|
|
};
|