-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
125 lines (125 loc) · 3.04 KB
/
index.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
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
module.exports = {
"plugins": [
"@typescript-eslint",
"import",
"eslint-plugin-tsdoc",
"jsx-a11y",
"react"
],
"root": true,
"parser": "@typescript-eslint/parser",
"ignorePatterns": [
"packages/core/libs/gql/*",
"**/cypress/**/*",
"**/build/**/*",
"**/node_modules/**/*",
"*.generated.*",
"packages/storybook-config/**/*",
"*.sass"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"next/core-web-vitals",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier",
"plugin:jsx-a11y/strict",
"plugin:react/recommended"
],
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
},
"import/resolver": {
"typescript": true,
"node": true
}
},
"rules": {
"tsdoc/syntax": "error",
"no-restricted-syntax": [
"error",
{
"selector": "Literal[value=/(^GB$|^DE$|^en-GB$|^de-DE$|^GBP$|^EUR$|^male$|^female$)/i]",
"message": "Avoid using string literal for this value, use enum instead"
}
],
"no-restricted-imports": [
"error",
{
"paths": [
{
"name": "next-intl",
"importNames": [
"NextIntlClientProvider"
],
"message": "Please import from 'core' instead."
},
{
"name": "next/image",
"importNames": [
"default"
],
"message": "Please import the custom Image component from core which works with the asset managment system."
}
]
}
],
"react/jsx-no-bind": [
"error",
{
"ignoreDOMComponents": true
}
],
"import/no-unresolved": "error",
"import/no-restricted-paths": [
"error",
{
"zones": [
{
"target": "./packages/**/*",
"from": "./apps/**/*",
"message": "Packages may not import from applications"
},
{
"target": "./packages/shared/**/*",
"from": [
"./apps/**/*",
"./packages/!(shared)/**/*"
],
"message": "Shared package may not import from outside of itself"
},
{
"target": "./apps/cats/**/*",
"from": "./apps/(!cats)/**/*",
"message": "Cats application may not import from other apps"
},
{
"target": "*/!(shared)/**/*",
"from": "./packages/shared/tokens/**/palette.*",
"message": "Palette should only be accessed via the useTheme hook (in a client component) or by importing palette.ts (in a server component)"
}
]
}
],
"react/function-component-definition": [
"error",
{
"namedComponents": "function-declaration"
}
]
},
"overrides": [
{
"files": [
"packages/core/libs/localisation/i18n.ts"
],
"rules": {
"no-restricted-imports": "off"
}
}
]
}