2022-04-12 21:00:59 +00:00
|
|
|
module.exports = {
|
2023-02-02 07:46:29 +00:00
|
|
|
plugins: ['@typescript-eslint', 'import', 'react', 'jest', 'jsdoc'],
|
2022-12-06 14:21:47 +00:00
|
|
|
extends: [
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
'next/core-web-vitals',
|
|
|
|
'next',
|
|
|
|
'airbnb',
|
|
|
|
'airbnb-typescript',
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:import/typescript',
|
|
|
|
'prettier',
|
|
|
|
'plugin:react/recommended',
|
2023-02-02 07:46:29 +00:00
|
|
|
'plugin:jsdoc/recommended',
|
2022-12-06 14:21:47 +00:00
|
|
|
],
|
2022-04-12 21:00:59 +00:00
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 'latest',
|
|
|
|
sourceType: 'module',
|
|
|
|
project: './tsconfig.json',
|
|
|
|
tsconfigRootDir: __dirname,
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
'no-restricted-exports': 0,
|
2022-12-06 14:21:47 +00:00
|
|
|
'react/display-name': 0,
|
|
|
|
'react/prop-types': 0,
|
|
|
|
'react/function-component-definition': 0,
|
|
|
|
'react/require-default-props': 0,
|
|
|
|
'import/prefer-default-export': 0,
|
|
|
|
'react/jsx-props-no-spreading': 0,
|
|
|
|
'react/no-unused-prop-types': 0,
|
|
|
|
'react/button-has-type': 0,
|
2023-02-17 17:39:18 +00:00
|
|
|
'import/no-extraneous-dependencies': ['error', { devDependencies: ['esbuild.js', '**/*.test.{ts,tsx}', '**/*.spec.{ts,tsx}', '**/*.factory.{ts,tsx}', '**/mocks/**', 'tests/**'] }],
|
2022-12-26 03:52:48 +00:00
|
|
|
'no-underscore-dangle': 0,
|
2022-04-12 21:00:59 +00:00
|
|
|
},
|
2022-08-09 18:44:07 +00:00
|
|
|
globals: {
|
|
|
|
JSX: true,
|
2022-12-26 03:52:48 +00:00
|
|
|
NodeJS: true,
|
2022-08-09 18:44:07 +00:00
|
|
|
},
|
2022-12-05 07:45:51 +00:00
|
|
|
env: {
|
|
|
|
'jest/globals': true,
|
|
|
|
},
|
2022-04-12 21:00:59 +00:00
|
|
|
};
|