-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy path.eslintrc.js
54 lines (54 loc) · 1.71 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* @see https://eslint.org/docs/latest/use/configure/configuration-files
* @type {import("eslint").ESLint.ConfigData}
*/
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: ['airbnb', 'airbnb/hooks', 'airbnb-typescript', 'plugin:prettier/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: true,
},
plugins: ['prettier'],
rules: {
'consistent-return': 'off',
'import/prefer-default-export': 'off',
'prettier/prettier': 'warn',
'react/react-in-jsx-scope': 'off',
'no-param-reassign': 'off',
'react/require-default-props': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'import/extensions': 'off',
'react/jsx-props-no-spreading': 'off',
'import/order': [
'error',
{
pathGroups: [
{ pattern: 'react', group: 'builtin' },
{ pattern: '~shared/**', group: 'internal', position: 'before' },
{ pattern: '~entities/**', group: 'internal', position: 'before' },
{ pattern: '~features/**', group: 'internal', position: 'before' },
{ pattern: '~widgets/**', group: 'internal', position: 'before' },
{ pattern: '~pages/**', group: 'internal', position: 'before' },
],
pathGroupsExcludedImportTypes: ['builtin'],
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
'newlines-between': 'never',
alphabetize: { order: 'asc', caseInsensitive: true },
},
],
},
overrides: [
{
files: ['src/shared/lib/test/**/*.{js,ts,jsx,tsx}'],
rules: {
'import/no-extraneous-dependencies': ['off'],
},
},
],
ignorePatterns: ['.eslintrc.js'],
};