122 lines
2.4 KiB
JavaScript
122 lines
2.4 KiB
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
node: true,
|
|
'jest/globals': true,
|
|
},
|
|
extends: [
|
|
'airbnb',
|
|
'airbnb-typescript',
|
|
'eslint:recommended',
|
|
'plugin:react/recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:prettier/recommended',
|
|
'plugin:sonarjs/recommended',
|
|
'plugin:import/errors',
|
|
'plugin:import/warnings',
|
|
'plugin:react/jsx-runtime',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
ecmaVersion: 12,
|
|
sourceType: 'module',
|
|
},
|
|
plugins: [
|
|
'react',
|
|
'@typescript-eslint',
|
|
'simple-import-sort',
|
|
'react-hooks',
|
|
'prettier',
|
|
'jest',
|
|
],
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
'import/resolver': {
|
|
node: {
|
|
paths: ['src'],
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
},
|
|
},
|
|
rules: {
|
|
'react/jsx-filename-extension': [
|
|
'error',
|
|
{
|
|
extensions: ['.tsx', '.js', '.jsx'],
|
|
},
|
|
],
|
|
'react/prop-types': 'off',
|
|
'@typescript-eslint/explicit-function-return-type': 'error',
|
|
'@typescript-eslint/no-var-requires': 'error',
|
|
'react/no-array-index-key': 'error',
|
|
'linebreak-style': [
|
|
'error',
|
|
process.env.platform === 'win32' ? 'windows' : 'unix',
|
|
],
|
|
'@typescript-eslint/default-param-last': 'off',
|
|
|
|
// simple sort error
|
|
'simple-import-sort/imports': 'error',
|
|
'simple-import-sort/exports': 'error',
|
|
|
|
// hooks
|
|
'react-hooks/rules-of-hooks': 'error',
|
|
'react-hooks/exhaustive-deps': 'error',
|
|
|
|
// airbnb
|
|
'no-underscore-dangle': 'off',
|
|
'no-console': 'off',
|
|
'import/prefer-default-export': 'off',
|
|
'import/extensions': [
|
|
'error',
|
|
'ignorePackages',
|
|
{
|
|
js: 'never',
|
|
jsx: 'never',
|
|
ts: 'never',
|
|
tsx: 'never',
|
|
},
|
|
],
|
|
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
|
|
'no-plusplus': 'off',
|
|
'jsx-a11y/label-has-associated-control': [
|
|
'error',
|
|
{
|
|
required: {
|
|
some: ['nesting', 'id'],
|
|
},
|
|
},
|
|
],
|
|
'jsx-a11y/label-has-for': [
|
|
'error',
|
|
{
|
|
required: {
|
|
some: ['nesting', 'id'],
|
|
},
|
|
},
|
|
],
|
|
'@typescript-eslint/no-unused-vars': 'error',
|
|
'func-style': ['error', 'declaration', { allowArrowFunctions: true }],
|
|
'arrow-body-style': ['error', 'as-needed'],
|
|
|
|
// eslint rules need to remove
|
|
'@typescript-eslint/no-shadow': 'off',
|
|
'import/no-cycle': 'off',
|
|
'prettier/prettier': [
|
|
'error',
|
|
{},
|
|
{
|
|
usePrettierrc: true,
|
|
},
|
|
],
|
|
},
|
|
};
|