118 lines
3.1 KiB
JavaScript
118 lines
3.1 KiB
JavaScript
module.exports = {
|
|
extends: [
|
|
'next',
|
|
'plugin:prettier/recommended',
|
|
'plugin:@tanstack/eslint-plugin-query/recommended',
|
|
],
|
|
settings: {
|
|
next: {
|
|
rootDir: __dirname,
|
|
},
|
|
},
|
|
parserOptions: {
|
|
babelOptions: {
|
|
presets: [require.resolve('next/babel')],
|
|
},
|
|
},
|
|
rules: {
|
|
'block-scoped-var': 'error',
|
|
'import/no-duplicates': ['error', { considerQueryString: false }],
|
|
'import/order': [
|
|
'error',
|
|
{
|
|
alphabetize: {
|
|
order: 'asc',
|
|
},
|
|
groups: [
|
|
'builtin',
|
|
'external',
|
|
'internal',
|
|
'parent',
|
|
'sibling',
|
|
'index',
|
|
],
|
|
pathGroups: [
|
|
{
|
|
pattern: '@/**',
|
|
group: 'internal',
|
|
},
|
|
],
|
|
pathGroupsExcludedImportTypes: ['builtin'],
|
|
'newlines-between': 'always',
|
|
},
|
|
],
|
|
'no-alert': 'error',
|
|
'no-unused-vars': [
|
|
'error',
|
|
{ varsIgnorePattern: '^_', argsIgnorePattern: '^_' },
|
|
],
|
|
'react-hooks/rules-of-hooks': 'error',
|
|
'react-hooks/exhaustive-deps': 'error',
|
|
'sort-imports': [
|
|
'error',
|
|
{
|
|
ignoreDeclarationSort: true,
|
|
},
|
|
],
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.tsx'],
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:@typescript-eslint/recommended-requiring-type-checking',
|
|
],
|
|
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'error',
|
|
'@typescript-eslint/no-non-null-assertion': 'error',
|
|
'sort-imports': [
|
|
'error',
|
|
{
|
|
ignoreDeclarationSort: true,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
files: ['*.spec.*', '*.test.*', '**/__mock__/**/*'],
|
|
plugins: ['jest'],
|
|
extends: ['plugin:jest/recommended', 'plugin:testing-library/react'],
|
|
rules: {
|
|
'@typescript-eslint/ban-types': 'off',
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/no-unsafe-argument': 'off',
|
|
'@typescript-eslint/no-unsafe-assignment': 'off',
|
|
'@typescript-eslint/no-unsafe-call': 'off',
|
|
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
'@typescript-eslint/no-unsafe-return': 'off',
|
|
'testing-library/no-await-sync-events': [
|
|
'error',
|
|
{ eventModules: ['fire-event'] },
|
|
],
|
|
'testing-library/await-async-events': [
|
|
'error',
|
|
{
|
|
eventModule: 'userEvent',
|
|
},
|
|
],
|
|
'testing-library/no-manual-cleanup': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error',
|
|
{ varsIgnorePattern: '^_', argsIgnorePattern: '^_' },
|
|
],
|
|
'react/display-name': 0,
|
|
'jest/expect-expect': 'error',
|
|
'@typescript-eslint/unbound-method': 'off',
|
|
'jest/unbound-method': 'error',
|
|
},
|
|
},
|
|
],
|
|
};
|