-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eslintrc.cjs
81 lines (81 loc) · 2.55 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
module.exports = {
env: {
browser: true,
es2020: true,
serviceworker: true,
},
globals: {
JSX: true,
},
root: true,
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:import/recommended',
'plugin:@typescript-eslint/recommended',
'eslint-config-prettier',
],
ignorePatterns: ['.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
ecmaVersion: 'latest',
sourceType: 'module',
},
settings: {
'import/resolver': {
'eslint-import-resolver-custom-alias': {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
},
plugins: ['react', '@typescript-eslint', 'react-refresh', 'prettier', 'import'],
rules: {
'react-refresh/only-export-components': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unused-vars': 'warn',
'prefer-const': 'warn',
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'import/no-unresolved': [
2,
{
ignore: ['fhir/r4b'], // Fixes error: Unable to resolve path to module 'fhir/r4b'.
},
],
'import/order': [
'error',
{
groups: ['builtin', 'external', 'internal', ['index', 'sibling', 'parent']],
'newlines-between': 'always',
pathGroupsExcludedImportTypes: ['builtin'],
pathGroups: [
{
pattern: 'aidbox-react/**',
group: 'external',
position: 'after',
},
{
pattern: 'fhir-react/**',
group: 'external',
position: 'after',
},
{
pattern: 'shared/**',
group: 'internal',
position: 'after',
},
{
pattern: 'src/**',
group: 'internal',
position: 'after',
},
],
alphabetize: { order: 'asc', caseInsensitive: true },
},
],
},
};