-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
126 lines (124 loc) · 2.87 KB
/
.eslintrc.cjs
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// eslint-disable-next-line @typescript-eslint/no-var-requires
const tsConfig = require('./tsconfig.json');
const config = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'airbnb-typescript/base',
'prettier',
'plugin:sonarjs/recommended',
'plugin:typescript-sort-keys/recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
'plugin:jsx-a11y/recommended',
],
ignorePatterns: [
'**/build/**',
'**/dist/**',
'**/coverage/**',
'node_modules/**',
'**/node_modules/**',
],
overrides: [
// React
{
files: ['**/*.{js,jsx,ts,tsx}'],
settings: {
formComponents: ['Form'],
'import/resolver': {
typescript: {
project: './tsconfig.eslint.json',
},
},
linkComponents: [
{ linkAttribute: 'to', name: 'Link' },
{ linkAttribute: 'to', name: 'NavLink' },
],
react: {
version: 'detect',
},
},
},
{
env: {
node: true,
},
files: ['.eslintrc.{js,cjs}'],
parserOptions: {
sourceType: 'script',
},
},
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 'latest',
project: './tsconfig.eslint.json',
sourceType: 'module',
},
plugins: [
'@typescript-eslint',
'import',
'react',
'sonarjs',
'sort-destructure-keys',
'sort-keys-fix',
'typescript-sort-keys',
'react',
'jsx-a11y',
],
rules: {
'@typescript-eslint/consistent-type-exports': 'error',
'@typescript-eslint/dot-notation': 'off',
'@typescript-eslint/no-throw-literal': 'off',
'import/extensions': [
'error',
'ignorePackages',
{ ts: 'never', tsx: 'never' },
],
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: [
'**/tests/**',
'**/*.test.{ts,tsx}',
'**/.eslintrc.cjs',
'**/vite.config.{js,ts}',
'**/tailwind.config.{js,ts}',
],
optionalDependencies: false,
packageDir: [
'./',
...tsConfig.references.map((ref) => `./${ref.path}`),
],
},
],
'jsx-a11y/no-autofocus': 'off',
'no-console': 'error',
'sonarjs/prefer-single-boolean-return': 'off',
'sort-destructure-keys/sort-destructure-keys': 2,
'sort-imports': ['error', { ignoreDeclarationSort: true }],
'sort-keys': 'error',
'sort-keys-fix/sort-keys-fix': 'warn',
},
settings: {
'import/resolver': {
typescript: {
project: [
'cli/tsconfig.json',
'codellm/tsconfig.json',
'remix/tsconfig.json',
],
},
},
},
};
module.exports = config;