AFFiNE/.eslintrc.js

247 lines
6.1 KiB
JavaScript
Raw Normal View History

const { resolve } = require('node:path');
const createPattern = packageName => [
{
group: ['**/dist', '**/dist/**'],
message: 'Do not import from dist',
allowTypeImports: false,
},
{
group: ['**/src', '**/src/**'],
message: 'Do not import from src',
allowTypeImports: false,
},
{
group: [`@affine/${packageName}`],
message: 'Do not import package itself',
allowTypeImports: false,
},
{
group: [`@toeverything/${packageName}`],
message: 'Do not import package itself',
allowTypeImports: false,
},
2023-07-04 20:34:22 +03:00
{
2023-07-27 21:06:30 +03:00
group: ['@blocksuite /store'],
2023-07-04 20:34:22 +03:00
message: "Import from '@blocksuite/global/utils'",
importNames: ['assertExists', 'assertEquals'],
},
2023-07-27 21:06:30 +03:00
{
group: ['react-router-dom'],
message: 'Use `useNavigateHelper` instead',
importNames: ['useNavigate'],
},
];
2023-06-08 20:11:53 +03:00
const allPackages = [
'packages/cli',
'packages/component',
'packages/debug',
'packages/env',
'packages/graphql',
'packages/hooks',
'packages/i18n',
'packages/jotai',
'packages/native',
'packages/plugin-infra',
'packages/templates',
'packages/theme',
'packages/workspace',
'packages/y-indexeddb',
'apps/web',
'apps/server',
'apps/electron',
'apps/storybook',
2023-06-13 05:29:04 +03:00
'plugins/copilot',
'plugins/bookmark-block',
2023-06-08 20:11:53 +03:00
];
/**
* @type {import('eslint').Linter.Config}
*/
const config = {
2023-02-17 10:33:32 +03:00
root: true,
settings: {
react: {
version: 'detect',
2023-02-17 10:33:32 +03:00
},
next: {
rootDir: 'apps/web',
},
},
extends: [
'eslint:recommended',
2023-04-14 08:24:44 +03:00
'plugin:react-hooks/recommended',
2023-02-17 10:33:32 +03:00
'plugin:react/recommended',
2023-02-18 07:52:14 +03:00
'plugin:react/jsx-runtime',
2023-02-17 10:33:32 +03:00
'plugin:@typescript-eslint/recommended',
2023-06-29 07:13:35 +03:00
'prettier',
2023-02-17 10:33:32 +03:00
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
globalReturn: false,
impliedStrict: true,
jsx: true,
},
ecmaVersion: 'latest',
sourceType: 'module',
2023-06-08 20:11:53 +03:00
project: resolve(__dirname, './tsconfig.eslint.json'),
2023-02-17 10:33:32 +03:00
},
plugins: [
'react',
'@typescript-eslint',
'simple-import-sort',
'sonarjs',
'i',
2023-02-17 10:33:32 +03:00
'unused-imports',
'unicorn',
2023-02-17 10:33:32 +03:00
],
rules: {
'array-callback-return': 'error',
2023-02-17 10:33:32 +03:00
'no-undef': 'off',
'no-empty': 'off',
'no-func-assign': 'off',
'no-cond-assign': 'off',
'no-constant-binary-expression': 'error',
'no-constructor-return': 'error',
'react/prop-types': 'off',
2023-03-15 19:58:43 +03:00
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/no-non-null-assertion': 'error',
2023-02-17 10:33:32 +03:00
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'off',
2023-04-28 08:41:06 +03:00
'@typescript-eslint/no-unused-vars': [
'error',
{
varsIgnorePattern: '^_',
argsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
2023-02-18 07:52:14 +03:00
'unused-imports/no-unused-imports': 'error',
2023-02-17 10:33:32 +03:00
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
2023-06-09 06:55:23 +03:00
'@typescript-eslint/ban-ts-comment': [
'error',
{
'ts-expect-error': 'allow-with-description',
'ts-ignore': true,
'ts-nocheck': true,
'ts-check': false,
},
],
2023-02-17 10:33:32 +03:00
'@typescript-eslint/no-restricted-imports': [
'error',
{
patterns: [
{
group: ['**/dist'],
message: "Don't import from dist",
allowTypeImports: false,
},
{
group: ['**/src'],
message: "Don't import from src",
allowTypeImports: false,
},
2023-07-04 20:34:22 +03:00
{
group: ['@blocksuite/store'],
message: "Import from '@blocksuite/global/utils'",
importNames: ['assertExists', 'assertEquals'],
},
2023-07-27 21:06:30 +03:00
{
group: ['react-router-dom'],
message: 'Use `useNavigateHelper` instead',
importNames: ['useNavigate'],
},
2023-02-17 10:33:32 +03:00
],
},
],
'unicorn/filename-case': [
'error',
{
case: 'kebabCase',
ignore: ['^\\[[a-zA-Z0-9-_]+\\]\\.tsx$'],
},
],
'sonarjs/no-all-duplicated-branches': 'error',
'sonarjs/no-element-overwrite': 'error',
'sonarjs/no-empty-collection': 'error',
'sonarjs/no-extra-arguments': 'error',
'sonarjs/no-identical-conditions': 'error',
'sonarjs/no-identical-expressions': 'error',
'sonarjs/no-ignored-return': 'error',
'sonarjs/no-one-iteration-loop': 'error',
'sonarjs/no-use-of-empty-return-value': 'error',
'sonarjs/non-existent-operator': 'error',
'sonarjs/no-collapsible-if': 'error',
'sonarjs/no-same-line-conditional': 'error',
'sonarjs/no-duplicated-branches': 'error',
'sonarjs/no-collection-size-mischeck': 'error',
'sonarjs/no-useless-catch': 'error',
'sonarjs/no-identical-functions': 'error',
2023-02-17 10:33:32 +03:00
},
overrides: [
{
files: 'apps/server/**/*.ts',
rules: {
'@typescript-eslint/consistent-type-imports': 0,
},
},
{
files: '*.cjs',
rules: {
'@typescript-eslint/no-var-requires': 0,
},
},
...allPackages.map(pkg => ({
files: [`${pkg}/src/**/*.ts`, `${pkg}/src/**/*.tsx`],
parserOptions: {
project: resolve(__dirname, './tsconfig.eslint.json'),
},
rules: {
'@typescript-eslint/no-restricted-imports': [
'error',
{
patterns: createPattern(pkg),
},
],
'@typescript-eslint/no-floating-promises': [
'error',
{
ignoreVoid: false,
ignoreIIFE: false,
},
],
},
})),
{
2023-06-09 06:55:23 +03:00
files: [
'**/__tests__/**/*',
'**/*.stories.tsx',
'**/*.spec.ts',
'**/tests/**/*',
'scripts/**/*',
'**/benchmark/**/*',
'**/__debug__/**/*',
'**/e2e/**/*',
2023-06-09 06:55:23 +03:00
],
rules: {
'@typescript-eslint/no-non-null-assertion': 0,
2023-06-09 06:55:23 +03:00
'@typescript-eslint/ban-ts-comment': [
'error',
{
'ts-expect-error': false,
'ts-ignore': true,
'ts-nocheck': true,
'ts-check': false,
},
],
'@typescript-eslint/no-floating-promises': 0,
},
},
],
2023-02-17 10:33:32 +03:00
};
module.exports = config;