-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy patheslint.config.js
143 lines (142 loc) · 3.72 KB
/
eslint.config.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
import reactRecommended from "eslint-plugin-react/configs/recommended.js";
import jsxRuntime from "eslint-plugin-react/configs/jsx-runtime.js";
import prettier from "eslint-config-prettier";
import reactHooks from "eslint-plugin-react-hooks";
import lingui from "eslint-plugin-lingui";
import * as graphql from "@graphql-eslint/eslint-plugin";
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
plugins: {
prettier,
"react-hooks": reactHooks,
lingui,
},
},
{
files: ["**/*.{js,cjs,jsx,mjsx,ts,tsx,mtsx}"],
...reactRecommended,
...jsxRuntime,
settings: {
react: {
version: "detect",
},
},
},
{
name: "apply graphql processor to all typescript files",
files: ["**/*.{ts,tsx}"],
processor: graphql.processors.graphql,
},
{
name: "configure graphql linter",
files: ["**/*.graphql"],
plugins: {
"@graphql-eslint": graphql,
},
languageOptions: {
parser: graphql,
},
rules: {
...graphql.configs["operations-recommended"].rules,
"@graphql-eslint/no-deprecated": "warn",
},
},
{
rules: {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ argsIgnorePattern: "^_" },
],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-require-imports": "error",
"lingui/no-unlocalized-strings": [
"error",
{
ignore: [
// Ignore strings which are a single "word" (no spaces)
// and doesn't start with an uppercase letter
"^(?![A-Z])\\S+$",
// Ignore UPPERCASE literals
// Example: const test = "FOO"
"^[A-Z0-9_-]+$",
],
ignoreFunctions: [
"createSvgIcon",
"log",
"useTrackMatomoPageView",
"useTrackWithMatomo",
"formatInTimeZone",
"zonedTimeToUtc",
"utcToZonedTime",
"graphql",
"getGenericMultiSelect",
],
ignoreNames: [
"style",
"sx",
"fontFamily",
"bgcolor",
"border",
"padding",
"color",
"alt",
"borderBottom",
"gridTemplateColumns",
"gridTemplateRows",
"gridTemplateAreas",
"rel",
"documentTitle",
"color",
"border",
"en",
"es",
"fontFamily",
"boxShadow",
"transform",
"format",
"name",
"padding",
"xDateFormat",
"day",
"week",
"month",
"Content-Type",
"Accept-Language",
"& .MuiAvatar-root",
],
},
],
"lingui/t-call-in-function": "error",
"lingui/no-single-variables-to-translate": "error",
"lingui/no-expression-in-message": "error",
"lingui/no-single-tag-to-translate": "error",
"lingui/no-trans-inside-trans": "error",
},
ignores: [
"**/*.test.ts",
"src/components/TimeZonePicker/useTimeZoneList.ts",
"codegen.ts",
"eslint.config.js",
],
},
{
languageOptions: {
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2020,
project: true,
sourceType: "module",
tsconfigRootDir: import.meta.dirname,
},
},
},
);