-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy path.eslintrc.cjs
More file actions
333 lines (327 loc) · 11.5 KB
/
.eslintrc.cjs
File metadata and controls
333 lines (327 loc) · 11.5 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/* eslint-env node */
// eslint-disable-next-line @typescript-eslint/no-var-requires
const guildConfig = require('@theguild/eslint-config/base');
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { REACT_RESTRICTED_SYNTAX, RESTRICTED_SYNTAX } = require('@theguild/eslint-config/constants');
const path = require('path');
const SCHEMA_PATH = './packages/services/api/src/modules/*/module.graphql.ts';
const OPERATIONS_PATHS = [
'./packages/web/app/**/*.ts',
'./packages/web/app/**/*.tsx',
'./packages/web/app/**/*.graphql',
];
const rulesToExtends = Object.fromEntries(
Object.entries(guildConfig.rules).filter(([key]) =>
[
'import/first',
'no-restricted-globals',
'@typescript-eslint/no-unused-vars',
'unicorn/no-array-push-push',
'no-else-return',
'no-lonely-if',
'unicorn/prefer-includes',
'no-extra-boolean-cast',
].includes(key),
),
);
const HIVE_RESTRICTED_SYNTAX = [
{
// ❌ '0.0.0.0' or `0.0.0.0`
selector: ':matches(Literal[value="0.0.0.0"], TemplateElement[value.raw="0.0.0.0"])',
message: 'Use "::" to make it compatible with both IPv4 and IPv6',
},
];
const tailwindCallees = ['clsx', 'cn', 'cva', 'cx'];
/**
* @type {import('eslint').Linter.Config}
*/
module.exports = {
ignorePatterns: [
'scripts',
'rules',
'out',
'.hive',
'packages/web/app/.ladle/**',
'public',
'packages/web/app/src/graphql/index.ts',
'packages/libraries/cli/src/sdk.ts',
'packages/libraries/cli/src/gql/**/*',
'packages/services/storage/src/db/types.ts',
'packages/web/app/src/gql/**/*',
'codegen.cjs',
'tsup',
'packages/libraries/render-laboratory/src/laboratory.ts',
'packages/web/app/vite.config.ts',
],
overrides: [
{
// Setup GraphQL Parser
files: '*.{graphql,gql}',
parser: '@graphql-eslint/eslint-plugin',
plugins: ['@graphql-eslint'],
parserOptions: {
schema: SCHEMA_PATH,
operations: OPERATIONS_PATHS,
},
rules: {
'@graphql-eslint/no-deprecated': 'error',
'@graphql-eslint/require-id-when-available': 'error',
},
},
{
// Setup processor for operations/fragments definitions on code-files
files: ['packages/web/app/**/*.tsx', 'packages/web/app/**/*.ts'],
processor: '@graphql-eslint/graphql',
},
{
files: ['packages/web/app/**/*.graphql'],
plugins: ['@graphql-eslint'],
rules: {
'@graphql-eslint/no-deprecated': 'error',
'@graphql-eslint/require-id-when-available': 'error',
},
},
{
files: ['*.cjs'],
parserOptions: { ecmaVersion: 2020 },
},
{
files: ['packages/**/*.ts', 'packages/**/*.tsx', 'cypress/**/*.ts', 'cypress/**/*.tsx'],
reportUnusedDisableDirectives: true,
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
project: [path.join(__dirname, './tsconfig.eslint.json')],
},
parser: '@typescript-eslint/parser',
plugins: [...guildConfig.plugins, 'hive'],
extends: guildConfig.extends,
rules: {
'no-process-env': 'error',
'no-empty': ['error', { allowEmptyCatch: true }],
'import/no-absolute-path': 'error',
'import/no-self-import': 'error',
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: [
'packages/services/storage/tools/*.js',
'packages/services/**',
'packages/migrations/**',
// We bundle it all anyway, so there are no node_modules
'packages/web/app/**',
// We bundle it all anyway, so there are no node_modules
'packages/libraries/laboratory/**',
'**/*.spec.ts',
'**/*.test.ts',
'**/*.e2e.ts',
],
optionalDependencies: false,
},
],
'hive/enforce-deps-in-dev': [
'error',
{
scopes: ['@hive', '@graphql-hive'],
ignored: ['packages/libraries/**', 'packages/web/**'],
},
],
'@typescript-eslint/no-floating-promises': 'error',
'sonarjs/no-unused-collection': 'warn',
'sonarjs/no-inverted-boolean-check': 'warn',
...rulesToExtends,
'no-lonely-if': 'off',
'object-shorthand': 'off',
'no-restricted-syntax': ['error', ...HIVE_RESTRICTED_SYNTAX, ...RESTRICTED_SYNTAX],
'prefer-destructuring': 'off',
'prefer-const': 'off',
'no-useless-escape': 'off',
'no-inner-declarations': 'off',
'@typescript-eslint/no-unnecessary-type-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
caughtErrors: 'none',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
},
},
{
files: ['packages/web/**'],
extends: [
'@theguild',
'@theguild/eslint-config/react',
'plugin:better-tailwindcss/legacy-recommended',
'plugin:@next/next/recommended',
],
settings: {
'import/resolver': {
typescript: {
project: ['packages/web/app/tsconfig.json'],
},
},
},
rules: {
// conflicts with official prettier-plugin-tailwindcss and tailwind v3
'better-tailwindcss/enforce-consistent-class-order': 'off',
'better-tailwindcss/enforce-canonical-classes': 'off',
// keeping classes in one line helps prettier-plugin-tailwindcss
// enable wrapping in text editors to make classes human readable
'better-tailwindcss/enforce-consistent-line-wrapping': 'off',
'better-tailwindcss/enforce-shorthand-classes': 'off',
'react/display-name': 'off',
'react/prop-types': 'off',
'react/no-unknown-property': 'off',
'jsx-a11y/anchor-is-valid': ['off', { components: ['Link', 'NextLink'] }],
'jsx-a11y/alt-text': ['warn', { elements: ['img'], img: ['Image', 'NextImage'] }],
'no-restricted-syntax': ['error', ...HIVE_RESTRICTED_SYNTAX, ...REACT_RESTRICTED_SYNTAX],
'prefer-destructuring': 'off',
'no-console': 'off',
'no-useless-escape': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'react/jsx-no-useless-fragment': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'off',
'unicorn/filename-case': 'off',
'import/no-default-export': 'off',
'@next/next/no-img-element': 'off',
'@typescript-eslint/ban-types': 'off',
'jsx-a11y/label-has-associated-control': 'off',
'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/no-static-element-interactions': 'off',
'@next/next/no-html-link-for-pages': 'off',
'unicorn/no-negated-condition': 'off',
'no-implicit-coercion': 'off',
'react/jsx-key': 'warn',
},
},
{
files: ['packages/web/app/**'],
settings: {
'better-tailwindcss': {
// tailwindcss 4: the path to the entry file of the css based tailwind config (eg: `src/global.css`)
entryPoint: 'packages/web/app/src/index.css',
callees: tailwindCallees,
},
},
rules: {
// better-tailwindcss assumes you're using v4...we're being explicit here due to our dual tailwind setups
'better-tailwindcss/no-deprecated-classes': 'error',
// Tailwind v4 uses CSS variables without var() syntax
'better-tailwindcss/enforce-consistent-variable-syntax': 'off',
'better-tailwindcss/no-unknown-classes': [
'error',
{
ignore: [
'drag-none',
// Animation utilities (from index.css, replaces tailwindcss-animate)
'animate-in',
'animate-out',
'fade-in-.*',
'fade-out-.*',
'zoom-in-.*',
'zoom-out-.*',
'slide-in-from-.*',
'slide-out-to-.*',
// Custom radius from @theme
'rounded-xs',
// ring-offset with semantic colors
'ring-offset-.*',
// Data attribute variants with custom animations (for Radix UI components)
'data-\\[side=(top|right|bottom|left)\\]:animate-slide-(up|down|left|right)-fade',
// GraphiQL classes
'graphiql-.*',
// hive classes
'hive-.*',
// Schema diff custom classes (defined in index.css)
'schema-doc-row-.*',
// No scrollbar utility (defined in index.css)
'no-scrollbar',
// Tailwind v4 CSS variable syntax with parentheses
'.*-\\(--.*\\)',
],
},
],
},
},
{
files: ['packages/web/app/**/*.stories.tsx', 'packages/web/docs/**'],
rules: {
'react-hooks/rules-of-hooks': 'off',
},
},
{
files: ['packages/web/docs/**'],
settings: {
next: {
rootDir: 'packages/web/docs',
},
'better-tailwindcss': {
// tailwindcss 3: the path to the tailwind config file (eg: `tailwind.config.js`)
tailwindConfig: 'packages/web/docs/tailwind.config.ts',
callees: tailwindCallees,
},
},
rules: {
'import/extensions': 'off',
// better-tailwindcss assumes you're using v4...we're being explicit here due to our dual tailwind setups
'better-tailwindcss/no-deprecated-classes': 'off',
'better-tailwindcss/no-unknown-classes': [
'error',
{
ignore: [
'light',
'hive-focus',
'hive-focus-within',
'nextra-focus',
'nextra-scrollbar',
'no-scrollbar', // from Nextra
'hive-slider',
'hive-prose',
'subheader',
'subheading-anchor',
'duration-\\[.*\\]', // Allow arbitrary duration values like duration-[.8s]
'ease-\\[var\\(--.*\\)\\]', // Allow CSS variables in arbitrary ease values
'x:.*', // Allow Nextra 4 custom variant prefix
],
},
],
// Allow CSS variables in arbitrary values for Tailwind v3
'better-tailwindcss/enforce-consistent-variable-syntax': 'off',
},
},
{
files: 'cypress/**',
extends: 'plugin:cypress/recommended',
rules: {
'cypress/no-unnecessary-waiting': 'off',
'cypress/unsafe-to-chain-command': 'off',
},
},
{
files: [
// environment should be parsed to avoid global dependencies and sacred .env files
'packages/**/environment.ts',
// - environment is inlined and must be "registered" in next.config.js
// - `import.meta.env` is not supported in Next.js yet
'packages/web/docs/**',
],
rules: {
'no-process-env': 'off',
},
},
],
};