-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.cjs
106 lines (105 loc) · 3.41 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
module.exports = {
env: {
browser: true,
es2020: true,
serviceworker: true,
},
globals: {
HTMLButtonElement: 'readonly',
JSX: true,
},
root: true,
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:import/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:storybook/recommended',
'eslint-config-prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
ecmaVersion: 'latest',
sourceType: 'module',
},
ignorePatterns: ['.eslintrc.cjs'],
plugins: ['react', '@typescript-eslint', 'react-refresh', 'prettier', 'import', 'string-to-lingui'],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {
project: 'src',
project: 'tsconfig.json',
},
},
},
rules: {
'react-refresh/only-export-components': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'string-to-lingui/t-call-in-function': 2,
'import/default': 'off',
'import/named': 'off',
'import/no-named-as-default': 'off',
'import/no-named-as-default-member': 'off',
'import/no-unresolved': [
2,
{
ignore: ['fhir/r4b'], // Fixes error: Unable to resolve path to module 'fhir/r4b'.
},
],
'no-restricted-imports': [
'error',
{
patterns: [
{
group: ['**/contrib/aidbox-types'],
message: 'Please use @beda.software/aidbox-types',
},
{
group: ['**/contrib/fhir-emr'],
message: 'Please use @beda.software/emr',
},
{
group: ['**/contrib/emr-config'],
message: 'Please use @beda.software/emr-config',
},
],
},
],
'import/order': [
'error',
{
groups: ['builtin', 'external', 'internal', ['index', 'sibling', 'parent']],
'newlines-between': 'always',
pathGroupsExcludedImportTypes: ['builtin'],
pathGroups: [
{
pattern: 'aidbox-react/**',
group: 'external',
position: 'after',
},
{
pattern: '@beda.software/**',
group: 'external',
position: 'after',
},
{
pattern: 'src/**',
group: 'internal',
position: 'after',
},
],
alphabetize: { order: 'asc', caseInsensitive: true },
},
],
}
};