@remotion/eslint-config 3.0.0-lambda.450 → 3.0.0-lambda.456

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoDA,kBAwCE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0kBA,kBAoCE"}
package/dist/index.js CHANGED
@@ -1,20 +1,549 @@
1
1
  "use strict";
2
- const xo = require("eslint-config-xo/esnext");
3
- const xoReact = require("eslint-config-xo-react");
4
2
  const auto_import_rules_1 = require("./auto-import-rules");
5
- const baseExtends = ["eslint:recommended", "prettier"];
3
+ const baseExtends = ["eslint:recommended"];
6
4
  const getRules = (typescript) => {
7
5
  return {
8
- ...xo.rules,
9
- ...xoReact.rules,
10
- "react/jsx-no-constructed-context-values": "off",
6
+ // prettier
7
+ curly: 0,
8
+ "lines-around-comment": 0,
9
+ "max-len": 0,
10
+ "no-confusing-arrow": 0,
11
+ "no-mixed-operators": 0,
12
+ "no-tabs": 0,
13
+ "no-unexpected-multiline": 0,
14
+ quotes: 0,
15
+ "@typescript-eslint/quotes": 0,
16
+ "babel/quotes": 0,
17
+ "array-bracket-newline": "off",
18
+ "array-bracket-spacing": "off",
19
+ "array-element-newline": "off",
20
+ "arrow-parens": "off",
21
+ "arrow-spacing": "off",
22
+ "block-spacing": "off",
23
+ "brace-style": "off",
24
+ "comma-dangle": "off",
25
+ "comma-spacing": "off",
26
+ "comma-style": "off",
27
+ "computed-property-spacing": "off",
28
+ "dot-location": "off",
29
+ "eol-last": "off",
30
+ "func-call-spacing": "off",
31
+ "function-call-argument-newline": "off",
32
+ "function-paren-newline": "off",
33
+ "generator-star": "off",
34
+ "generator-star-spacing": "off",
35
+ "implicit-arrow-linebreak": "off",
36
+ indent: "off",
37
+ "jsx-quotes": "off",
38
+ "key-spacing": "off",
39
+ "keyword-spacing": "off",
40
+ "linebreak-style": "off",
41
+ "multiline-ternary": "off",
42
+ "newline-per-chained-call": "off",
43
+ "new-parens": "off",
44
+ "no-arrow-condition": "off",
45
+ "no-comma-dangle": "off",
46
+ "no-extra-parens": "off",
47
+ "no-extra-semi": "off",
48
+ "no-floating-decimal": "off",
49
+ "no-mixed-spaces-and-tabs": "off",
50
+ "no-multi-spaces": "off",
51
+ "no-multiple-empty-lines": "off",
52
+ "no-reserved-keys": "off",
53
+ "no-space-before-semi": "off",
54
+ "no-trailing-spaces": "off",
55
+ "no-whitespace-before-property": "off",
56
+ "no-wrap-func": "off",
57
+ "nonblock-statement-body-position": "off",
58
+ "object-curly-newline": "off",
59
+ "object-curly-spacing": "off",
60
+ "object-property-newline": "off",
61
+ "one-var-declaration-per-line": "off",
62
+ "operator-linebreak": "off",
63
+ "padded-blocks": "off",
64
+ "quote-props": "off",
65
+ "rest-spread-spacing": "off",
66
+ semi: "off",
67
+ "semi-spacing": "off",
68
+ "semi-style": "off",
69
+ "space-after-function-name": "off",
70
+ "space-after-keywords": "off",
71
+ "space-before-blocks": "off",
72
+ "space-before-function-paren": "off",
73
+ "space-before-function-parentheses": "off",
74
+ "space-before-keywords": "off",
75
+ "space-in-brackets": "off",
76
+ "space-in-parens": "off",
77
+ "space-infix-ops": "off",
78
+ "space-return-throw-case": "off",
79
+ "space-unary-ops": "off",
80
+ "space-unary-word-ops": "off",
81
+ "switch-colon-spacing": "off",
82
+ "template-curly-spacing": "off",
83
+ "template-tag-spacing": "off",
84
+ "unicode-bom": "off",
85
+ "wrap-iife": "off",
86
+ "wrap-regex": "off",
87
+ "yield-star-spacing": "off",
88
+ "@babel/object-curly-spacing": "off",
89
+ "@babel/semi": "off",
90
+ "@typescript-eslint/brace-style": "off",
91
+ "@typescript-eslint/comma-dangle": "off",
92
+ "@typescript-eslint/comma-spacing": "off",
93
+ "@typescript-eslint/func-call-spacing": "off",
94
+ "@typescript-eslint/indent": "off",
95
+ "@typescript-eslint/keyword-spacing": "off",
96
+ "@typescript-eslint/member-delimiter-style": "off",
97
+ "@typescript-eslint/no-extra-parens": "off",
98
+ "@typescript-eslint/no-extra-semi": "off",
99
+ "@typescript-eslint/object-curly-spacing": "off",
100
+ "@typescript-eslint/semi": "off",
101
+ "@typescript-eslint/space-before-function-paren": "off",
102
+ "@typescript-eslint/space-infix-ops": "off",
103
+ "@typescript-eslint/type-annotation-spacing": "off",
104
+ "babel/object-curly-spacing": "off",
105
+ "babel/semi": "off",
106
+ "flowtype/boolean-style": "off",
107
+ "flowtype/delimiter-dangle": "off",
108
+ "flowtype/generic-spacing": "off",
109
+ "flowtype/object-type-curly-spacing": "off",
110
+ "flowtype/object-type-delimiter": "off",
111
+ "flowtype/quotes": "off",
112
+ "flowtype/semi": "off",
113
+ "flowtype/space-after-type-colon": "off",
114
+ "flowtype/space-before-generic-bracket": "off",
115
+ "flowtype/space-before-type-colon": "off",
116
+ "flowtype/union-intersection-spacing": "off",
117
+ "react/jsx-child-element-spacing": "off",
118
+ "react/jsx-closing-bracket-location": "off",
119
+ "react/jsx-closing-tag-location": "off",
11
120
  "react/jsx-curly-newline": "off",
121
+ "react/jsx-curly-spacing": "off",
122
+ "react/jsx-equals-spacing": "off",
123
+ "react/jsx-first-prop-new-line": "off",
124
+ "react/jsx-indent": "off",
125
+ "react/jsx-indent-props": "off",
126
+ "react/jsx-max-props-per-line": "off",
127
+ "react/jsx-newline": "off",
128
+ "react/jsx-one-expression-per-line": "off",
129
+ "react/jsx-props-no-multi-spaces": "off",
130
+ "react/jsx-tag-spacing": "off",
131
+ "react/jsx-wrap-multilines": "off",
132
+ // xo config
133
+ "for-direction": "error",
134
+ "getter-return": "error",
135
+ "no-async-promise-executor": "error",
136
+ "no-await-in-loop": "error",
137
+ "no-compare-neg-zero": "error",
138
+ "no-cond-assign": "error",
139
+ "no-constant-condition": "error",
140
+ "no-control-regex": "error",
141
+ "no-debugger": "error",
142
+ "no-dupe-args": "error",
143
+ "no-dupe-else-if": "error",
144
+ "no-dupe-keys": "error",
145
+ "no-duplicate-case": "error",
146
+ "no-empty-character-class": "error",
147
+ "no-empty": [
148
+ "error",
149
+ {
150
+ allowEmptyCatch: true,
151
+ },
152
+ ],
153
+ "no-ex-assign": "error",
154
+ "no-extra-boolean-cast": "error",
155
+ // Disabled because of https://github.com/eslint/eslint/issues/6028
156
+ // 'no-extra-parens': [
157
+ // 'error',
158
+ // 'all',
159
+ // {
160
+ // conditionalAssign: false,
161
+ // nestedBinaryExpressions: false,
162
+ // ignoreJSX: 'multi-line'
163
+ // }
164
+ // ],
165
+ "no-func-assign": "error",
166
+ "no-import-assign": "error",
167
+ "no-inner-declarations": "error",
168
+ "no-invalid-regexp": "error",
169
+ "no-irregular-whitespace": "error",
170
+ "no-loss-of-precision": "error",
171
+ "no-misleading-character-class": "error",
172
+ "no-obj-calls": "error",
173
+ "no-promise-executor-return": "error",
174
+ "no-prototype-builtins": "error",
175
+ "no-regex-spaces": "error",
176
+ "no-setter-return": "error",
177
+ "no-sparse-arrays": "error",
178
+ "no-template-curly-in-string": "error",
179
+ "no-unreachable": "error",
180
+ "no-unreachable-loop": "error",
181
+ "no-unsafe-finally": "error",
182
+ "no-unsafe-negation": "error",
183
+ "no-unsafe-optional-chaining": [
184
+ "error",
185
+ {
186
+ disallowArithmeticOperators: true,
187
+ },
188
+ ],
189
+ "no-useless-backreference": "error",
190
+ "use-isnan": "error",
191
+ "valid-typeof": [
192
+ "error",
193
+ {
194
+ requireStringLiterals: false,
195
+ },
196
+ ],
197
+ "accessor-pairs": [
198
+ "error",
199
+ {
200
+ enforceForClassMembers: true,
201
+ },
202
+ ],
203
+ "array-callback-return": [
204
+ "error",
205
+ {
206
+ allowImplicit: true,
207
+ },
208
+ ],
209
+ "block-scoped-var": "error",
210
+ complexity: "warn",
211
+ "default-case": "error",
212
+ "default-case-last": "error",
213
+ "default-param-last": "error",
214
+ "dot-notation": "error",
215
+ eqeqeq: "error",
216
+ "grouped-accessor-pairs": ["error", "getBeforeSet"],
217
+ "guard-for-in": "error",
218
+ "no-alert": "error",
219
+ "no-caller": "error",
220
+ "no-case-declarations": "error",
221
+ "no-constructor-return": "error",
222
+ "no-else-return": [
223
+ "error",
224
+ {
225
+ allowElseIf: false,
226
+ },
227
+ ],
228
+ "no-empty-pattern": "error",
229
+ "no-eq-null": "error",
230
+ "no-eval": "error",
231
+ "no-extend-native": "error",
232
+ "no-extra-bind": "error",
233
+ "no-extra-label": "error",
234
+ "no-fallthrough": "error",
235
+ "no-global-assign": "error",
236
+ "no-implicit-coercion": "error",
237
+ "no-implicit-globals": "error",
238
+ "no-implied-eval": "error",
239
+ "no-iterator": "error",
240
+ "no-labels": "error",
241
+ "no-lone-blocks": "error",
242
+ "no-multi-str": "error",
243
+ "no-new-func": "error",
244
+ "no-new-wrappers": "error",
245
+ "no-nonoctal-decimal-escape": "error",
246
+ "no-new": "error",
247
+ "no-octal-escape": "error",
248
+ "no-octal": "error",
249
+ "no-proto": "error",
250
+ "no-redeclare": "error",
251
+ "no-return-assign": ["error", "always"],
252
+ "no-return-await": "error",
253
+ "no-script-url": "error",
254
+ "no-self-assign": [
255
+ "error",
256
+ {
257
+ props: true,
258
+ },
259
+ ],
260
+ "no-self-compare": "error",
261
+ "no-sequences": "error",
262
+ "no-throw-literal": "error",
263
+ "no-unmodified-loop-condition": "error",
264
+ "no-unused-expressions": [
265
+ "error",
266
+ {
267
+ enforceForJSX: true,
268
+ },
269
+ ],
270
+ "no-unused-labels": "error",
271
+ "no-useless-call": "error",
272
+ "no-useless-concat": "error",
273
+ "no-useless-escape": "error",
274
+ "no-useless-return": "error",
275
+ "no-void": "error",
276
+ "no-warning-comments": "warn",
277
+ "no-with": "error",
278
+ "prefer-promise-reject-errors": [
279
+ "error",
280
+ {
281
+ allowEmptyReject: true,
282
+ },
283
+ ],
284
+ "prefer-regex-literals": "error",
285
+ radix: "error",
286
+ // Disabled for now as it causes too much churn
287
+ // TODO: Enable it in the future when I have time to deal with
288
+ // the churn and the rule is stable and has an autofixer
289
+ // 'require-unicode-regexp': 'error',
290
+ yoda: "error",
291
+ "no-delete-var": "error",
292
+ "no-label-var": "error",
293
+ "no-restricted-globals": ["error", "event"],
294
+ "no-shadow-restricted-names": "error",
295
+ "no-undef-init": "error",
296
+ "no-undef": [
297
+ "error",
298
+ {
299
+ typeof: true,
300
+ },
301
+ ],
302
+ "no-unused-vars": [
303
+ "error",
304
+ {
305
+ vars: "all",
306
+ args: "after-used",
307
+ ignoreRestSiblings: true,
308
+ argsIgnorePattern: /^_/.source,
309
+ caughtErrors: "all",
310
+ caughtErrorsIgnorePattern: /^_$/.source,
311
+ },
312
+ ],
313
+ "no-buffer-constructor": "error",
314
+ "no-restricted-imports": [
315
+ "error",
316
+ "domain",
317
+ "freelist",
318
+ "smalloc",
319
+ "sys",
320
+ "colors",
321
+ ],
322
+ camelcase: [
323
+ "error",
324
+ {
325
+ properties: "always",
326
+ },
327
+ ],
328
+ "capitalized-comments": [
329
+ "error",
330
+ "always",
331
+ {
332
+ // You can also ignore this rule by wrapping the first word in quotes.
333
+ // c8 => https://github.com/bcoe/c8
334
+ ignorePattern: /pragma|ignore|prettier-ignore|webpack\w+:|c8/.source,
335
+ ignoreInlineComments: true,
336
+ ignoreConsecutiveComments: true,
337
+ },
338
+ ],
339
+ "func-name-matching": [
340
+ "error",
341
+ {
342
+ considerPropertyDescriptor: true,
343
+ },
344
+ ],
345
+ "func-names": ["error", "never"],
346
+ "lines-between-class-members": [
347
+ "error",
348
+ "always",
349
+ {
350
+ // Workaround to allow class fields to not have lines between them.
351
+ // TODO: Get ESLint to add an option to ignore class fields.
352
+ exceptAfterSingleLine: true,
353
+ },
354
+ ],
355
+ "max-depth": "warn",
356
+ "max-nested-callbacks": ["warn", 4],
357
+ "max-params": [
358
+ "warn",
359
+ {
360
+ max: 4,
361
+ },
362
+ ],
363
+ "max-statements-per-line": "error",
364
+ "no-array-constructor": "error",
365
+ "no-lonely-if": "error",
366
+ "no-multi-assign": "error",
367
+ "no-negated-condition": "error",
368
+ "no-new-object": "error",
369
+ "no-restricted-syntax": ["error", "WithStatement"],
370
+ "no-unneeded-ternary": "error",
371
+ // Disabled because of https://github.com/xojs/eslint-config-xo/issues/27
372
+ // 'object-property-newline': 'error',
373
+ "one-var": ["error", "never"],
374
+ "operator-assignment": ["error", "always"],
375
+ "padding-line-between-statements": [
376
+ "error",
377
+ {
378
+ blankLine: "always",
379
+ prev: "multiline-block-like",
380
+ next: "*",
381
+ },
382
+ ],
383
+ "prefer-exponentiation-operator": "error",
384
+ "spaced-comment": [
385
+ "error",
386
+ "always",
387
+ {
388
+ line: {
389
+ exceptions: ["-", "+", "*"],
390
+ markers: ["!", "/", "=>"],
391
+ },
392
+ block: {
393
+ exceptions: ["-", "+", "*"],
394
+ markers: ["!", "*"],
395
+ balanced: true,
396
+ },
397
+ },
398
+ ],
399
+ "constructor-super": "error",
400
+ "no-class-assign": "error",
401
+ "no-const-assign": "error",
402
+ "no-dupe-class-members": "error",
403
+ "no-new-symbol": "error",
404
+ "no-this-before-super": "error",
405
+ "no-useless-computed-key": [
406
+ "error",
407
+ {
408
+ enforceForClassMembers: true,
409
+ },
410
+ ],
411
+ "no-useless-constructor": "error",
412
+ "no-useless-rename": "error",
413
+ "require-yield": "error",
414
+ "symbol-description": "error",
415
+ "no-var": "error",
416
+ "object-shorthand": ["error", "always"],
417
+ "prefer-arrow-callback": [
418
+ "error",
419
+ {
420
+ allowNamedFunctions: true,
421
+ },
422
+ ],
423
+ "prefer-const": [
424
+ "error",
425
+ {
426
+ destructuring: "all",
427
+ },
428
+ ],
429
+ "prefer-numeric-literals": "error",
430
+ "prefer-rest-params": "error",
431
+ "prefer-spread": "error",
432
+ "prefer-object-spread": "error",
433
+ "prefer-destructuring": [
434
+ "error",
435
+ {
436
+ // `array` is disabled because it forces destructuring on
437
+ // stupid stuff like `foo.bar = process.argv[2];`
438
+ // TODO: Open ESLint issue about this
439
+ VariableDeclarator: {
440
+ array: false,
441
+ object: true,
442
+ },
443
+ AssignmentExpression: {
444
+ array: false,
445
+ // Disabled because object assignment destructuring requires parens wrapping:
446
+ // `let foo; ({foo} = object);`
447
+ object: false,
448
+ },
449
+ },
450
+ {
451
+ enforceForRenamedProperties: false,
452
+ },
453
+ ],
454
+ "no-useless-catch": "error",
455
+ // xo-react rules
456
+ "react/boolean-prop-naming": [
457
+ "error",
458
+ {
459
+ validateNested: true,
460
+ },
461
+ ],
462
+ "react/button-has-type": "error",
463
+ "react/default-props-match-prop-types": "error",
464
+ "react/function-component-definition": [
465
+ "error",
466
+ {
467
+ namedComponents: "arrow-function",
468
+ unnamedComponents: "arrow-function",
469
+ },
470
+ ],
471
+ "react/no-access-state-in-setstate": "error",
472
+ "react/no-children-prop": "error",
473
+ "react/no-danger": "error",
474
+ "react/no-danger-with-children": "error",
475
+ "react/no-deprecated": "error",
476
+ "react/no-did-update-set-state": "error",
477
+ "react/no-direct-mutation-state": "error",
478
+ "react/no-find-dom-node": "error",
479
+ "react/no-is-mounted": "error",
480
+ "react/no-redundant-should-component-update": "error",
481
+ "react/no-render-return-value": "error",
482
+ "react/no-typos": "error",
483
+ "react/no-string-refs": [
484
+ "error",
485
+ {
486
+ noTemplateLiterals: true,
487
+ },
488
+ ],
489
+ "react/no-this-in-sfc": "error",
490
+ "react/no-unescaped-entities": "error",
491
+ "react/no-unknown-property": "error",
492
+ "react/no-unsafe": "error",
493
+ "react/no-unused-prop-types": "error",
494
+ "react/no-unused-state": "error",
495
+ "react/prefer-read-only-props": "error",
496
+ "react/require-default-props": [
497
+ "error",
498
+ {
499
+ forbidDefaultForRequired: true,
500
+ ignoreFunctionalComponents: true,
501
+ },
502
+ ],
503
+ "react/self-closing-comp": "error",
504
+ "react/state-in-constructor": ["error", "never"],
505
+ "react/static-property-placement": "error",
506
+ "react/style-prop-object": "error",
507
+ "react/void-dom-elements-no-children": "error",
508
+ "react/jsx-boolean-value": "error",
509
+ "react/jsx-no-bind": [
510
+ "error",
511
+ {
512
+ allowArrowFunctions: true,
513
+ },
514
+ ],
515
+ "react/jsx-no-comment-textnodes": "error",
516
+ "react/jsx-no-duplicate-props": [
517
+ "error",
518
+ {
519
+ ignoreCase: true,
520
+ },
521
+ ],
522
+ "react/jsx-no-script-url": "error",
523
+ "react/jsx-no-undef": "error",
524
+ "react/jsx-curly-brace-presence": ["error", "never"],
525
+ "react/jsx-fragments": ["error", "syntax"],
526
+ "react/jsx-pascal-case": "error",
527
+ "react/jsx-sort-props": [
528
+ "error",
529
+ {
530
+ callbacksLast: true,
531
+ shorthandFirst: true,
532
+ noSortAlphabetically: true,
533
+ reservedFirst: true,
534
+ },
535
+ ],
536
+ "react/jsx-uses-react": "error",
537
+ "react/jsx-uses-vars": "error",
538
+ "react-hooks/rules-of-hooks": "error",
539
+ "react-hooks/exhaustive-deps": "warn",
540
+ // Turning off rules that are too strict or don't apply to Remotion
541
+ "react/jsx-no-constructed-context-values": "off",
12
542
  "no-console": "off",
13
543
  "10x/react-in-scope": "off",
14
544
  "react/react-in-jsx-scope": "off",
15
545
  "react/jsx-key": "off",
16
546
  "react/jsx-no-target-blank": "off",
17
- "react/jsx-tag-spacing": "off",
18
547
  "react/prop-types": "off",
19
548
  // The following rules are handled by typescript-eslint
20
549
  ...(typescript
@@ -54,21 +583,17 @@ module.exports = {
54
583
  es6: true,
55
584
  jest: true,
56
585
  },
57
- globals: {
58
- Text: "off",
59
- StyleSheet: "off",
60
- },
61
586
  plugins: [
62
- ...xoReact.plugins,
63
- "@typescript-eslint/eslint-plugin",
64
587
  "react",
588
+ "react-hooks",
589
+ "@typescript-eslint/eslint-plugin",
65
590
  "10x",
66
591
  "@remotion",
67
592
  ],
68
593
  extends: baseExtends,
69
594
  parser: require.resolve("@typescript-eslint/parser"),
70
595
  parserOptions: {
71
- ecmaVersion: 2020,
596
+ ecmaVersion: 2021,
72
597
  sourceType: "module",
73
598
  ecmaFeatures: {
74
599
  jsx: true,
@@ -85,7 +610,7 @@ module.exports = {
85
610
  rules: getRules(false),
86
611
  settings: {
87
612
  react: {
88
- version: "17.0.0",
613
+ version: "18.0.0",
89
614
  },
90
615
  },
91
616
  };
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,8CAA+C;AAC/C,kDAAmD;AACnD,2DAAkD;AAElD,MAAM,WAAW,GAAG,CAAC,oBAAoB,EAAE,UAAU,CAAC,CAAC;AAEvD,MAAM,QAAQ,GAAG,CAAC,UAAmB,EAAE,EAAE;IACvC,OAAO;QACL,GAAG,EAAE,CAAC,KAAK;QACX,GAAG,OAAO,CAAC,KAAK;QAChB,yCAAyC,EAAE,KAAK;QAChD,yBAAyB,EAAE,KAAK;QAChC,YAAY,EAAE,KAAK;QACnB,oBAAoB,EAAE,KAAK;QAC3B,0BAA0B,EAAE,KAAK;QACjC,eAAe,EAAE,KAAK;QACtB,2BAA2B,EAAE,KAAK;QAClC,uBAAuB,EAAE,KAAK;QAC9B,kBAAkB,EAAE,KAAK;QACzB,uDAAuD;QACvD,GAAG,CAAC,UAAU;YACZ,CAAC,CAAC;gBACE,gBAAgB,EAAE,KAAK;gBACvB,UAAU,EAAE,KAAK;gBACjB,WAAW,EAAE,KAAK;gBAClB,2FAA2F;gBAC3F,oCAAoC,EAAE,KAAK;aAC5C;YACH,CAAC,CAAC,EAAE,CAAC;QACP,yEAAyE;QACzE,qFAAqF;QACrF,+BAA+B,EAAE,KAAK;QACtC,uFAAuF;QACvF,0BAA0B,EAAE,KAAK;QACjC,iBAAiB,EAAE;YACjB,OAAO;YACP;gBACE,OAAO,EAAE,+BAAW;aACrB;SACF;QACD,iCAAiC;QACjC,yBAAyB,EAAE,KAAK;QAChC,iCAAiC,EAAE,MAAM;QACzC,oCAAoC,EAAE,MAAM;QAC5C,4BAA4B,EAAE,MAAM;QACpC,2BAA2B,EAAE,MAAM;QACnC,8BAA8B,EAAE,MAAM;QACtC,2BAA2B,EAAE,MAAM;QACnC,mDAAmD,EAAE,KAAK;KAC3D,CAAC;AACJ,CAAC,CAAC;AAEF,iBAAS;IACP,GAAG,EAAE;QACH,OAAO,EAAE,IAAI;QACb,GAAG,EAAE,IAAI;QACT,IAAI,EAAE,IAAI;KACX;IACD,OAAO,EAAE;QACP,IAAI,EAAE,KAAK;QACX,UAAU,EAAE,KAAK;KAClB;IACD,OAAO,EAAE;QACP,GAAG,OAAO,CAAC,OAAO;QAClB,kCAAkC;QAClC,OAAO;QACP,KAAK;QACL,WAAW;KACZ;IACD,OAAO,EAAE,WAAW;IACpB,MAAM,EAAE,OAAO,CAAC,OAAO,CAAC,2BAA2B,CAAC;IACpD,aAAa,EAAE;QACb,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,QAAQ;QACpB,YAAY,EAAE;YACZ,GAAG,EAAE,IAAI;SACV;KACF;IACD,SAAS,EAAE;QACT;YACE,KAAK,EAAE,CAAC,YAAY,CAAC;YACrB,OAAO,EAAE,CAAC,uCAAuC,EAAE,GAAG,WAAW,CAAC;YAClE,MAAM,EAAE,2BAA2B;YACnC,KAAK,EAAE,QAAQ,CAAC,IAAI,CAAC;SACtB;KACF;IACD,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC;IACtB,QAAQ,EAAE;QACR,KAAK,EAAE;YACL,OAAO,EAAE,QAAQ;SAClB;KACF;CACF,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/eslint-config",
3
- "version": "3.0.0-lambda.450+cfd3a406b",
3
+ "version": "3.0.0-lambda.456+b29678d67",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -16,15 +16,12 @@
16
16
  "author": "Jonny Burger <jonny@remotion.dev>",
17
17
  "license": "ISC",
18
18
  "dependencies": {
19
- "@remotion/eslint-plugin": "3.0.0-lambda.450+cfd3a406b",
19
+ "@remotion/eslint-plugin": "3.0.0-lambda.456+b29678d67",
20
20
  "@typescript-eslint/eslint-plugin": "5.11.0",
21
21
  "@typescript-eslint/parser": "5.11.0",
22
- "eslint-config-prettier": "8.3.0",
23
- "eslint-config-xo": "0.35.0",
24
- "eslint-config-xo-react": "0.24.0",
25
22
  "eslint-plugin-10x": "1.5.0",
26
- "eslint-plugin-react": "7.26.1",
27
- "eslint-plugin-react-hooks": "4.3.0"
23
+ "eslint-plugin-react": "7.29.4",
24
+ "eslint-plugin-react-hooks": "4.4.0"
28
25
  },
29
26
  "devDependencies": {
30
27
  "@types/node": "17.0.17",
@@ -41,5 +38,5 @@
41
38
  "publishConfig": {
42
39
  "access": "public"
43
40
  },
44
- "gitHead": "cfd3a406b3588e5b844d2aad572f52f496d69556"
41
+ "gitHead": "b29678d6788a08578cc412f3aeee4de96a315bd7"
45
42
  }