@remotion/eslint-config-flat 4.0.269 → 4.0.270

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.
Files changed (2) hide show
  1. package/dist/esm/index.mjs +583 -62
  2. package/package.json +3 -3
@@ -3159,7 +3159,7 @@ var require_ms = __commonJS((exports, module) => {
3159
3159
  }
3160
3160
  });
3161
3161
 
3162
- // ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js
3162
+ // ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js
3163
3163
  var require_common = __commonJS((exports, module) => {
3164
3164
  function setup(env) {
3165
3165
  createDebug.debug = createDebug;
@@ -3261,50 +3261,64 @@ var require_common = __commonJS((exports, module) => {
3261
3261
  createDebug.namespaces = namespaces;
3262
3262
  createDebug.names = [];
3263
3263
  createDebug.skips = [];
3264
- let i;
3265
- const split = (typeof namespaces === "string" ? namespaces : "").split(/[\s,]+/);
3266
- const len = split.length;
3267
- for (i = 0;i < len; i++) {
3268
- if (!split[i]) {
3269
- continue;
3270
- }
3271
- namespaces = split[i].replace(/\*/g, ".*?");
3272
- if (namespaces[0] === "-") {
3273
- createDebug.skips.push(new RegExp("^" + namespaces.slice(1) + "$"));
3264
+ const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(" ", ",").split(",").filter(Boolean);
3265
+ for (const ns of split) {
3266
+ if (ns[0] === "-") {
3267
+ createDebug.skips.push(ns.slice(1));
3268
+ } else {
3269
+ createDebug.names.push(ns);
3270
+ }
3271
+ }
3272
+ }
3273
+ function matchesTemplate(search, template) {
3274
+ let searchIndex = 0;
3275
+ let templateIndex = 0;
3276
+ let starIndex = -1;
3277
+ let matchIndex = 0;
3278
+ while (searchIndex < search.length) {
3279
+ if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) {
3280
+ if (template[templateIndex] === "*") {
3281
+ starIndex = templateIndex;
3282
+ matchIndex = searchIndex;
3283
+ templateIndex++;
3284
+ } else {
3285
+ searchIndex++;
3286
+ templateIndex++;
3287
+ }
3288
+ } else if (starIndex !== -1) {
3289
+ templateIndex = starIndex + 1;
3290
+ matchIndex++;
3291
+ searchIndex = matchIndex;
3274
3292
  } else {
3275
- createDebug.names.push(new RegExp("^" + namespaces + "$"));
3293
+ return false;
3276
3294
  }
3277
3295
  }
3296
+ while (templateIndex < template.length && template[templateIndex] === "*") {
3297
+ templateIndex++;
3298
+ }
3299
+ return templateIndex === template.length;
3278
3300
  }
3279
3301
  function disable() {
3280
3302
  const namespaces = [
3281
- ...createDebug.names.map(toNamespace),
3282
- ...createDebug.skips.map(toNamespace).map((namespace) => "-" + namespace)
3303
+ ...createDebug.names,
3304
+ ...createDebug.skips.map((namespace) => "-" + namespace)
3283
3305
  ].join(",");
3284
3306
  createDebug.enable("");
3285
3307
  return namespaces;
3286
3308
  }
3287
3309
  function enabled(name) {
3288
- if (name[name.length - 1] === "*") {
3289
- return true;
3290
- }
3291
- let i;
3292
- let len;
3293
- for (i = 0, len = createDebug.skips.length;i < len; i++) {
3294
- if (createDebug.skips[i].test(name)) {
3310
+ for (const skip of createDebug.skips) {
3311
+ if (matchesTemplate(name, skip)) {
3295
3312
  return false;
3296
3313
  }
3297
3314
  }
3298
- for (i = 0, len = createDebug.names.length;i < len; i++) {
3299
- if (createDebug.names[i].test(name)) {
3315
+ for (const ns of createDebug.names) {
3316
+ if (matchesTemplate(name, ns)) {
3300
3317
  return true;
3301
3318
  }
3302
3319
  }
3303
3320
  return false;
3304
3321
  }
3305
- function toNamespace(regexp) {
3306
- return regexp.toString().substring(2, regexp.toString().length - 2).replace(/\.\*\?$/, "*");
3307
- }
3308
3322
  function coerce(val) {
3309
3323
  if (val instanceof Error) {
3310
3324
  return val.stack || val.message;
@@ -3320,7 +3334,7 @@ var require_common = __commonJS((exports, module) => {
3320
3334
  module.exports = setup;
3321
3335
  });
3322
3336
 
3323
- // ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js
3337
+ // ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js
3324
3338
  var require_browser = __commonJS((exports, module) => {
3325
3339
  exports.formatArgs = formatArgs;
3326
3340
  exports.save = save;
@@ -3593,7 +3607,7 @@ var require_supports_color = __commonJS((exports, module) => {
3593
3607
  };
3594
3608
  });
3595
3609
 
3596
- // ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js
3610
+ // ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js
3597
3611
  var require_node = __commonJS((exports, module) => {
3598
3612
  var tty = __require("tty");
3599
3613
  var util = __require("util");
@@ -3766,7 +3780,7 @@ var require_node = __commonJS((exports, module) => {
3766
3780
  };
3767
3781
  });
3768
3782
 
3769
- // ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js
3783
+ // ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js
3770
3784
  var require_src2 = __commonJS((exports, module) => {
3771
3785
  if (typeof process === "undefined" || process.type === "renderer" || false || process.__nwjs) {
3772
3786
  module.exports = require_browser();
@@ -15487,6 +15501,513 @@ var require_escape_string_regexp = __commonJS((exports, module) => {
15487
15501
  };
15488
15502
  });
15489
15503
 
15504
+ // ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js
15505
+ var require_common2 = __commonJS((exports, module) => {
15506
+ function setup(env) {
15507
+ createDebug.debug = createDebug;
15508
+ createDebug.default = createDebug;
15509
+ createDebug.coerce = coerce;
15510
+ createDebug.disable = disable;
15511
+ createDebug.enable = enable;
15512
+ createDebug.enabled = enabled;
15513
+ createDebug.humanize = require_ms();
15514
+ createDebug.destroy = destroy;
15515
+ Object.keys(env).forEach((key) => {
15516
+ createDebug[key] = env[key];
15517
+ });
15518
+ createDebug.names = [];
15519
+ createDebug.skips = [];
15520
+ createDebug.formatters = {};
15521
+ function selectColor(namespace) {
15522
+ let hash = 0;
15523
+ for (let i = 0;i < namespace.length; i++) {
15524
+ hash = (hash << 5) - hash + namespace.charCodeAt(i);
15525
+ hash |= 0;
15526
+ }
15527
+ return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
15528
+ }
15529
+ createDebug.selectColor = selectColor;
15530
+ function createDebug(namespace) {
15531
+ let prevTime;
15532
+ let enableOverride = null;
15533
+ let namespacesCache;
15534
+ let enabledCache;
15535
+ function debug(...args) {
15536
+ if (!debug.enabled) {
15537
+ return;
15538
+ }
15539
+ const self2 = debug;
15540
+ const curr = Number(new Date);
15541
+ const ms = curr - (prevTime || curr);
15542
+ self2.diff = ms;
15543
+ self2.prev = prevTime;
15544
+ self2.curr = curr;
15545
+ prevTime = curr;
15546
+ args[0] = createDebug.coerce(args[0]);
15547
+ if (typeof args[0] !== "string") {
15548
+ args.unshift("%O");
15549
+ }
15550
+ let index = 0;
15551
+ args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
15552
+ if (match === "%%") {
15553
+ return "%";
15554
+ }
15555
+ index++;
15556
+ const formatter = createDebug.formatters[format];
15557
+ if (typeof formatter === "function") {
15558
+ const val = args[index];
15559
+ match = formatter.call(self2, val);
15560
+ args.splice(index, 1);
15561
+ index--;
15562
+ }
15563
+ return match;
15564
+ });
15565
+ createDebug.formatArgs.call(self2, args);
15566
+ const logFn = self2.log || createDebug.log;
15567
+ logFn.apply(self2, args);
15568
+ }
15569
+ debug.namespace = namespace;
15570
+ debug.useColors = createDebug.useColors();
15571
+ debug.color = createDebug.selectColor(namespace);
15572
+ debug.extend = extend;
15573
+ debug.destroy = createDebug.destroy;
15574
+ Object.defineProperty(debug, "enabled", {
15575
+ enumerable: true,
15576
+ configurable: false,
15577
+ get: () => {
15578
+ if (enableOverride !== null) {
15579
+ return enableOverride;
15580
+ }
15581
+ if (namespacesCache !== createDebug.namespaces) {
15582
+ namespacesCache = createDebug.namespaces;
15583
+ enabledCache = createDebug.enabled(namespace);
15584
+ }
15585
+ return enabledCache;
15586
+ },
15587
+ set: (v) => {
15588
+ enableOverride = v;
15589
+ }
15590
+ });
15591
+ if (typeof createDebug.init === "function") {
15592
+ createDebug.init(debug);
15593
+ }
15594
+ return debug;
15595
+ }
15596
+ function extend(namespace, delimiter) {
15597
+ const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
15598
+ newDebug.log = this.log;
15599
+ return newDebug;
15600
+ }
15601
+ function enable(namespaces) {
15602
+ createDebug.save(namespaces);
15603
+ createDebug.namespaces = namespaces;
15604
+ createDebug.names = [];
15605
+ createDebug.skips = [];
15606
+ let i;
15607
+ const split = (typeof namespaces === "string" ? namespaces : "").split(/[\s,]+/);
15608
+ const len = split.length;
15609
+ for (i = 0;i < len; i++) {
15610
+ if (!split[i]) {
15611
+ continue;
15612
+ }
15613
+ namespaces = split[i].replace(/\*/g, ".*?");
15614
+ if (namespaces[0] === "-") {
15615
+ createDebug.skips.push(new RegExp("^" + namespaces.slice(1) + "$"));
15616
+ } else {
15617
+ createDebug.names.push(new RegExp("^" + namespaces + "$"));
15618
+ }
15619
+ }
15620
+ }
15621
+ function disable() {
15622
+ const namespaces = [
15623
+ ...createDebug.names.map(toNamespace),
15624
+ ...createDebug.skips.map(toNamespace).map((namespace) => "-" + namespace)
15625
+ ].join(",");
15626
+ createDebug.enable("");
15627
+ return namespaces;
15628
+ }
15629
+ function enabled(name) {
15630
+ if (name[name.length - 1] === "*") {
15631
+ return true;
15632
+ }
15633
+ let i;
15634
+ let len;
15635
+ for (i = 0, len = createDebug.skips.length;i < len; i++) {
15636
+ if (createDebug.skips[i].test(name)) {
15637
+ return false;
15638
+ }
15639
+ }
15640
+ for (i = 0, len = createDebug.names.length;i < len; i++) {
15641
+ if (createDebug.names[i].test(name)) {
15642
+ return true;
15643
+ }
15644
+ }
15645
+ return false;
15646
+ }
15647
+ function toNamespace(regexp) {
15648
+ return regexp.toString().substring(2, regexp.toString().length - 2).replace(/\.\*\?$/, "*");
15649
+ }
15650
+ function coerce(val) {
15651
+ if (val instanceof Error) {
15652
+ return val.stack || val.message;
15653
+ }
15654
+ return val;
15655
+ }
15656
+ function destroy() {
15657
+ console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
15658
+ }
15659
+ createDebug.enable(createDebug.load());
15660
+ return createDebug;
15661
+ }
15662
+ module.exports = setup;
15663
+ });
15664
+
15665
+ // ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js
15666
+ var require_browser2 = __commonJS((exports, module) => {
15667
+ exports.formatArgs = formatArgs;
15668
+ exports.save = save;
15669
+ exports.load = load;
15670
+ exports.useColors = useColors;
15671
+ exports.storage = localstorage();
15672
+ exports.destroy = (() => {
15673
+ let warned = false;
15674
+ return () => {
15675
+ if (!warned) {
15676
+ warned = true;
15677
+ console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
15678
+ }
15679
+ };
15680
+ })();
15681
+ exports.colors = [
15682
+ "#0000CC",
15683
+ "#0000FF",
15684
+ "#0033CC",
15685
+ "#0033FF",
15686
+ "#0066CC",
15687
+ "#0066FF",
15688
+ "#0099CC",
15689
+ "#0099FF",
15690
+ "#00CC00",
15691
+ "#00CC33",
15692
+ "#00CC66",
15693
+ "#00CC99",
15694
+ "#00CCCC",
15695
+ "#00CCFF",
15696
+ "#3300CC",
15697
+ "#3300FF",
15698
+ "#3333CC",
15699
+ "#3333FF",
15700
+ "#3366CC",
15701
+ "#3366FF",
15702
+ "#3399CC",
15703
+ "#3399FF",
15704
+ "#33CC00",
15705
+ "#33CC33",
15706
+ "#33CC66",
15707
+ "#33CC99",
15708
+ "#33CCCC",
15709
+ "#33CCFF",
15710
+ "#6600CC",
15711
+ "#6600FF",
15712
+ "#6633CC",
15713
+ "#6633FF",
15714
+ "#66CC00",
15715
+ "#66CC33",
15716
+ "#9900CC",
15717
+ "#9900FF",
15718
+ "#9933CC",
15719
+ "#9933FF",
15720
+ "#99CC00",
15721
+ "#99CC33",
15722
+ "#CC0000",
15723
+ "#CC0033",
15724
+ "#CC0066",
15725
+ "#CC0099",
15726
+ "#CC00CC",
15727
+ "#CC00FF",
15728
+ "#CC3300",
15729
+ "#CC3333",
15730
+ "#CC3366",
15731
+ "#CC3399",
15732
+ "#CC33CC",
15733
+ "#CC33FF",
15734
+ "#CC6600",
15735
+ "#CC6633",
15736
+ "#CC9900",
15737
+ "#CC9933",
15738
+ "#CCCC00",
15739
+ "#CCCC33",
15740
+ "#FF0000",
15741
+ "#FF0033",
15742
+ "#FF0066",
15743
+ "#FF0099",
15744
+ "#FF00CC",
15745
+ "#FF00FF",
15746
+ "#FF3300",
15747
+ "#FF3333",
15748
+ "#FF3366",
15749
+ "#FF3399",
15750
+ "#FF33CC",
15751
+ "#FF33FF",
15752
+ "#FF6600",
15753
+ "#FF6633",
15754
+ "#FF9900",
15755
+ "#FF9933",
15756
+ "#FFCC00",
15757
+ "#FFCC33"
15758
+ ];
15759
+ function useColors() {
15760
+ if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
15761
+ return true;
15762
+ }
15763
+ if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
15764
+ return false;
15765
+ }
15766
+ let m;
15767
+ return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
15768
+ }
15769
+ function formatArgs(args) {
15770
+ args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module.exports.humanize(this.diff);
15771
+ if (!this.useColors) {
15772
+ return;
15773
+ }
15774
+ const c = "color: " + this.color;
15775
+ args.splice(1, 0, c, "color: inherit");
15776
+ let index = 0;
15777
+ let lastC = 0;
15778
+ args[0].replace(/%[a-zA-Z%]/g, (match) => {
15779
+ if (match === "%%") {
15780
+ return;
15781
+ }
15782
+ index++;
15783
+ if (match === "%c") {
15784
+ lastC = index;
15785
+ }
15786
+ });
15787
+ args.splice(lastC, 0, c);
15788
+ }
15789
+ exports.log = console.debug || console.log || (() => {
15790
+ });
15791
+ function save(namespaces) {
15792
+ try {
15793
+ if (namespaces) {
15794
+ exports.storage.setItem("debug", namespaces);
15795
+ } else {
15796
+ exports.storage.removeItem("debug");
15797
+ }
15798
+ } catch (error) {
15799
+ }
15800
+ }
15801
+ function load() {
15802
+ let r;
15803
+ try {
15804
+ r = exports.storage.getItem("debug");
15805
+ } catch (error) {
15806
+ }
15807
+ if (!r && typeof process !== "undefined" && "env" in process) {
15808
+ r = process.env.DEBUG;
15809
+ }
15810
+ return r;
15811
+ }
15812
+ function localstorage() {
15813
+ try {
15814
+ return localStorage;
15815
+ } catch (error) {
15816
+ }
15817
+ }
15818
+ module.exports = require_common2()(exports);
15819
+ var { formatters } = module.exports;
15820
+ formatters.j = function(v) {
15821
+ try {
15822
+ return JSON.stringify(v);
15823
+ } catch (error) {
15824
+ return "[UnexpectedJSONParseError]: " + error.message;
15825
+ }
15826
+ };
15827
+ });
15828
+
15829
+ // ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js
15830
+ var require_node2 = __commonJS((exports, module) => {
15831
+ var tty = __require("tty");
15832
+ var util = __require("util");
15833
+ exports.init = init;
15834
+ exports.log = log;
15835
+ exports.formatArgs = formatArgs;
15836
+ exports.save = save;
15837
+ exports.load = load;
15838
+ exports.useColors = useColors;
15839
+ exports.destroy = util.deprecate(() => {
15840
+ }, "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
15841
+ exports.colors = [6, 2, 3, 4, 5, 1];
15842
+ try {
15843
+ const supportsColor = require_supports_color();
15844
+ if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
15845
+ exports.colors = [
15846
+ 20,
15847
+ 21,
15848
+ 26,
15849
+ 27,
15850
+ 32,
15851
+ 33,
15852
+ 38,
15853
+ 39,
15854
+ 40,
15855
+ 41,
15856
+ 42,
15857
+ 43,
15858
+ 44,
15859
+ 45,
15860
+ 56,
15861
+ 57,
15862
+ 62,
15863
+ 63,
15864
+ 68,
15865
+ 69,
15866
+ 74,
15867
+ 75,
15868
+ 76,
15869
+ 77,
15870
+ 78,
15871
+ 79,
15872
+ 80,
15873
+ 81,
15874
+ 92,
15875
+ 93,
15876
+ 98,
15877
+ 99,
15878
+ 112,
15879
+ 113,
15880
+ 128,
15881
+ 129,
15882
+ 134,
15883
+ 135,
15884
+ 148,
15885
+ 149,
15886
+ 160,
15887
+ 161,
15888
+ 162,
15889
+ 163,
15890
+ 164,
15891
+ 165,
15892
+ 166,
15893
+ 167,
15894
+ 168,
15895
+ 169,
15896
+ 170,
15897
+ 171,
15898
+ 172,
15899
+ 173,
15900
+ 178,
15901
+ 179,
15902
+ 184,
15903
+ 185,
15904
+ 196,
15905
+ 197,
15906
+ 198,
15907
+ 199,
15908
+ 200,
15909
+ 201,
15910
+ 202,
15911
+ 203,
15912
+ 204,
15913
+ 205,
15914
+ 206,
15915
+ 207,
15916
+ 208,
15917
+ 209,
15918
+ 214,
15919
+ 215,
15920
+ 220,
15921
+ 221
15922
+ ];
15923
+ }
15924
+ } catch (error) {
15925
+ }
15926
+ exports.inspectOpts = Object.keys(process.env).filter((key) => {
15927
+ return /^debug_/i.test(key);
15928
+ }).reduce((obj, key) => {
15929
+ const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
15930
+ return k.toUpperCase();
15931
+ });
15932
+ let val = process.env[key];
15933
+ if (/^(yes|on|true|enabled)$/i.test(val)) {
15934
+ val = true;
15935
+ } else if (/^(no|off|false|disabled)$/i.test(val)) {
15936
+ val = false;
15937
+ } else if (val === "null") {
15938
+ val = null;
15939
+ } else {
15940
+ val = Number(val);
15941
+ }
15942
+ obj[prop] = val;
15943
+ return obj;
15944
+ }, {});
15945
+ function useColors() {
15946
+ return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
15947
+ }
15948
+ function formatArgs(args) {
15949
+ const { namespace: name, useColors: useColors2 } = this;
15950
+ if (useColors2) {
15951
+ const c = this.color;
15952
+ const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
15953
+ const prefix = ` ${colorCode};1m${name} \x1B[0m`;
15954
+ args[0] = prefix + args[0].split(`
15955
+ `).join(`
15956
+ ` + prefix);
15957
+ args.push(colorCode + "m+" + module.exports.humanize(this.diff) + "\x1B[0m");
15958
+ } else {
15959
+ args[0] = getDate() + name + " " + args[0];
15960
+ }
15961
+ }
15962
+ function getDate() {
15963
+ if (exports.inspectOpts.hideDate) {
15964
+ return "";
15965
+ }
15966
+ return new Date().toISOString() + " ";
15967
+ }
15968
+ function log(...args) {
15969
+ return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + `
15970
+ `);
15971
+ }
15972
+ function save(namespaces) {
15973
+ if (namespaces) {
15974
+ process.env.DEBUG = namespaces;
15975
+ } else {
15976
+ delete process.env.DEBUG;
15977
+ }
15978
+ }
15979
+ function load() {
15980
+ return process.env.DEBUG;
15981
+ }
15982
+ function init(debug) {
15983
+ debug.inspectOpts = {};
15984
+ const keys = Object.keys(exports.inspectOpts);
15985
+ for (let i = 0;i < keys.length; i++) {
15986
+ debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
15987
+ }
15988
+ }
15989
+ module.exports = require_common2()(exports);
15990
+ var { formatters } = module.exports;
15991
+ formatters.o = function(v) {
15992
+ this.inspectOpts.colors = this.useColors;
15993
+ return util.inspect(v, this.inspectOpts).split(`
15994
+ `).map((str) => str.trim()).join(" ");
15995
+ };
15996
+ formatters.O = function(v) {
15997
+ this.inspectOpts.colors = this.useColors;
15998
+ return util.inspect(v, this.inspectOpts);
15999
+ };
16000
+ });
16001
+
16002
+ // ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js
16003
+ var require_src3 = __commonJS((exports, module) => {
16004
+ if (typeof process === "undefined" || process.type === "renderer" || false || process.__nwjs) {
16005
+ module.exports = require_browser2();
16006
+ } else {
16007
+ module.exports = require_node2();
16008
+ }
16009
+ });
16010
+
15490
16011
  // ../../node_modules/.pnpm/@eslint+js@8.56.0/node_modules/@eslint/js/src/configs/eslint-all.js
15491
16012
  var require_eslint_all2 = __commonJS((exports, module) => {
15492
16013
  module.exports = Object.freeze({
@@ -15764,7 +16285,7 @@ var require_eslint_recommended2 = __commonJS((exports, module) => {
15764
16285
  });
15765
16286
 
15766
16287
  // ../../node_modules/.pnpm/@eslint+js@8.56.0/node_modules/@eslint/js/src/index.js
15767
- var require_src3 = __commonJS((exports, module) => {
16288
+ var require_src4 = __commonJS((exports, module) => {
15768
16289
  module.exports = {
15769
16290
  configs: {
15770
16291
  all: require_eslint_all2(),
@@ -15787,7 +16308,7 @@ var require_file_enumerator = __commonJS((exports, module) => {
15787
16308
  CascadingConfigArrayFactory
15788
16309
  }
15789
16310
  } = require_eslintrc();
15790
- var debug = require_src2()("eslint:file-enumerator");
16311
+ var debug = require_src3()("eslint:file-enumerator");
15791
16312
  var minimatchOpts = { dot: true, matchBase: true };
15792
16313
  var dotfilesPattern = /(?:(?:^\.)|(?:[/\\]\.))[^/\\.].*/u;
15793
16314
  var NONE = 0;
@@ -15846,8 +16367,8 @@ var require_file_enumerator = __commonJS((exports, module) => {
15846
16367
  cwd = process.cwd(),
15847
16368
  configArrayFactory = new CascadingConfigArrayFactory({
15848
16369
  cwd,
15849
- getEslintRecommendedConfig: () => require_src3().configs.recommended,
15850
- getEslintAllConfig: () => require_src3().configs.all
16370
+ getEslintRecommendedConfig: () => require_src4().configs.recommended,
16371
+ getEslintAllConfig: () => require_src4().configs.all
15851
16372
  }),
15852
16373
  extensions = null,
15853
16374
  globInputPaths = true,
@@ -26068,7 +26589,7 @@ ${this.formatErrors(validateSchema.errors)}`);
26068
26589
  // ../../node_modules/.pnpm/eslint@8.56.0/node_modules/eslint/lib/shared/traverser.js
26069
26590
  var require_traverser = __commonJS((exports, module) => {
26070
26591
  var vk = require_eslint_visitor_keys();
26071
- var debug = require_src2()("eslint:traverser");
26592
+ var debug = require_src3()("eslint:traverser");
26072
26593
  function noop() {
26073
26594
  }
26074
26595
  function isNode(x) {
@@ -30453,7 +30974,7 @@ var require_config_comment_parser = __commonJS((exports, module) => {
30453
30974
  var {
30454
30975
  directivesPattern
30455
30976
  } = require_directives();
30456
- var debug = require_src2()("eslint:config-comment-parser");
30977
+ var debug = require_src3()("eslint:config-comment-parser");
30457
30978
  module.exports = class ConfigCommentParser {
30458
30979
  parseStringConfig(string, comment) {
30459
30980
  debug("Parsing String config");
@@ -31022,7 +31543,7 @@ var require_source_code2 = __commonJS((exports, module) => {
31022
31543
 
31023
31544
  // ../../node_modules/.pnpm/eslint@8.56.0/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js
31024
31545
  var require_debug_helpers = __commonJS((exports, module) => {
31025
- var debug = require_src2()("eslint:code-path");
31546
+ var debug = require_src3()("eslint:code-path");
31026
31547
  function getId(segment) {
31027
31548
  return segment.id + (segment.reachable ? "" : "!");
31028
31549
  }
@@ -34298,7 +34819,7 @@ var require_report_translator = __commonJS((exports, module) => {
34298
34819
 
34299
34820
  // ../../node_modules/.pnpm/eslint@8.56.0/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js
34300
34821
  var require_lazy_loading_rule_map = __commonJS((exports, module) => {
34301
- var debug = require_src2()("eslint:rules");
34822
+ var debug = require_src3()("eslint:rules");
34302
34823
 
34303
34824
  class LazyLoadingRuleMap extends Map {
34304
34825
  constructor(loaders) {
@@ -82713,7 +83234,7 @@ var require_safe_emitter = __commonJS((exports, module) => {
82713
83234
 
82714
83235
  // ../../node_modules/.pnpm/eslint@8.56.0/node_modules/eslint/lib/linter/source-code-fixer.js
82715
83236
  var require_source_code_fixer = __commonJS((exports, module) => {
82716
- var debug = require_src2()("eslint:source-code-fixer");
83237
+ var debug = require_src3()("eslint:source-code-fixer");
82717
83238
  var BOM = "\uFEFF";
82718
83239
  function compareMessagesByFixRange(a, b) {
82719
83240
  return a.fix.range[0] - b.fix.range[0] || a.fix.range[1] - b.fix.range[1];
@@ -83168,7 +83689,7 @@ var require_object_schema = __commonJS((exports) => {
83168
83689
  });
83169
83690
 
83170
83691
  // ../../node_modules/.pnpm/@humanwhocodes+object-schema@2.0.3/node_modules/@humanwhocodes/object-schema/src/index.js
83171
- var require_src4 = __commonJS((exports) => {
83692
+ var require_src5 = __commonJS((exports) => {
83172
83693
  exports.ObjectSchema = require_object_schema().ObjectSchema;
83173
83694
  exports.MergeStrategy = require_merge_strategy().MergeStrategy;
83174
83695
  exports.ValidationStrategy = require_validation_strategy().ValidationStrategy;
@@ -83179,7 +83700,7 @@ var require_api = __commonJS((exports) => {
83179
83700
  var path = __require("path");
83180
83701
  var minimatch = require_minimatch();
83181
83702
  var createDebug = require_src2();
83182
- var objectSchema = require_src4();
83703
+ var objectSchema = require_src5();
83183
83704
  var NOOP_STRATEGY = {
83184
83705
  required: false,
83185
83706
  merge() {
@@ -84534,7 +85055,7 @@ var require_flat_config_array = __commonJS((exports) => {
84534
85055
  var { flatConfigSchema } = require_flat_config_schema();
84535
85056
  var { RuleValidator } = require_rule_validator();
84536
85057
  var { defaultConfig } = require_default_config();
84537
- var jsPlugin = require_src3();
85058
+ var jsPlugin = require_src4();
84538
85059
  var ruleValidator = new RuleValidator;
84539
85060
  function splitPluginIdentifier(identifier) {
84540
85061
  const parts = identifier.split("/");
@@ -84704,7 +85225,7 @@ var require_linter = __commonJS((exports, module) => {
84704
85225
  var { RuleValidator } = require_rule_validator();
84705
85226
  var { assertIsRuleOptions, assertIsRuleSeverity } = require_flat_config_schema();
84706
85227
  var { normalizeSeverityToString } = require_severity();
84707
- var debug = require_src2()("eslint:linter");
85228
+ var debug = require_src3()("eslint:linter");
84708
85229
  var MAX_AUTOFIX_PASSES = 10;
84709
85230
  var DEFAULT_PARSER_NAME = "espree";
84710
85231
  var DEFAULT_ECMA_VERSION = 5;
@@ -86361,7 +86882,7 @@ var require_path_is_absolute = __commonJS((exports, module) => {
86361
86882
  });
86362
86883
 
86363
86884
  // ../../node_modules/.pnpm/glob@7.2.0/node_modules/glob/common.js
86364
- var require_common2 = __commonJS((exports) => {
86885
+ var require_common3 = __commonJS((exports) => {
86365
86886
  exports.setopts = setopts;
86366
86887
  exports.ownProp = ownProp;
86367
86888
  exports.makeAbs = makeAbs;
@@ -86563,7 +87084,7 @@ var require_sync = __commonJS((exports, module) => {
86563
87084
  var path = __require("path");
86564
87085
  var assert = __require("assert");
86565
87086
  var isAbsolute = require_path_is_absolute();
86566
- var common = require_common2();
87087
+ var common = require_common3();
86567
87088
  var setopts = common.setopts;
86568
87089
  var ownProp = common.ownProp;
86569
87090
  var childrenIgnored = common.childrenIgnored;
@@ -87030,7 +87551,7 @@ var require_glob = __commonJS((exports, module) => {
87030
87551
  var assert = __require("assert");
87031
87552
  var isAbsolute = require_path_is_absolute();
87032
87553
  var globSync = require_sync();
87033
- var common = require_common2();
87554
+ var common = require_common3();
87034
87555
  var setopts = common.setopts;
87035
87556
  var ownProp = common.ownProp;
87036
87557
  var inflight = require_inflight();
@@ -88234,7 +88755,7 @@ var require_lint_result_cache = __commonJS((exports, module) => {
88234
88755
  var stringify = require_json_stable_stringify_without_jsonify();
88235
88756
  var pkg = require_package2();
88236
88757
  var hash = require_hash();
88237
- var debug = require_src2()("eslint:lint-result-cache");
88758
+ var debug = require_src3()("eslint:lint-result-cache");
88238
88759
  var configHashCache = new WeakMap;
88239
88760
  var nodeVersion = process && process.version;
88240
88761
  var validCacheStrategies = ["metadata", "content"];
@@ -88329,7 +88850,7 @@ var require_cli_engine = __commonJS((exports, module) => {
88329
88850
  var loadRules = require_load_rules();
88330
88851
  var hash = require_hash();
88331
88852
  var LintResultCache = require_lint_result_cache();
88332
- var debug = require_src2()("eslint:cli-engine");
88853
+ var debug = require_src3()("eslint:cli-engine");
88333
88854
  var validFixTypes = new Set(["directive", "problem", "suggestion", "layout"]);
88334
88855
  var internalSlotsMap = new WeakMap;
88335
88856
  function validateFixTypes(fixTypes) {
@@ -88591,8 +89112,8 @@ var require_cli_engine = __commonJS((exports, module) => {
88591
89112
  useEslintrc: options.useEslintrc,
88592
89113
  builtInRules,
88593
89114
  loadRules,
88594
- getEslintRecommendedConfig: () => require_src3().configs.recommended,
88595
- getEslintAllConfig: () => require_src3().configs.all
89115
+ getEslintRecommendedConfig: () => require_src4().configs.recommended,
89116
+ getEslintAllConfig: () => require_src4().configs.all
88596
89117
  });
88597
89118
  const fileEnumerator = new FileEnumerator({
88598
89119
  configArrayFactory,
@@ -89790,7 +90311,7 @@ var require_utils4 = __commonJS((exports) => {
89790
90311
  });
89791
90312
 
89792
90313
  // ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/common.js
89793
- var require_common3 = __commonJS((exports) => {
90314
+ var require_common4 = __commonJS((exports) => {
89794
90315
  Object.defineProperty(exports, "__esModule", { value: true });
89795
90316
  exports.joinPathSegments = undefined;
89796
90317
  function joinPathSegments(a, b, separator) {
@@ -89810,7 +90331,7 @@ var require_async3 = __commonJS((exports) => {
89810
90331
  var rpl = require_run_parallel();
89811
90332
  var constants_1 = require_constants();
89812
90333
  var utils = require_utils4();
89813
- var common = require_common3();
90334
+ var common = require_common4();
89814
90335
  function read(directory, settings, callback) {
89815
90336
  if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
89816
90337
  readdirWithFileTypes(directory, settings, callback);
@@ -89916,7 +90437,7 @@ var require_sync3 = __commonJS((exports) => {
89916
90437
  var fsStat = require_out();
89917
90438
  var constants_1 = require_constants();
89918
90439
  var utils = require_utils4();
89919
- var common = require_common3();
90440
+ var common = require_common4();
89920
90441
  function read(directory, settings) {
89921
90442
  if (!settings.stats && constants_1.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
89922
90443
  return readdirWithFileTypes(directory, settings);
@@ -90331,7 +90852,7 @@ var require_queue = __commonJS((exports, module) => {
90331
90852
  });
90332
90853
 
90333
90854
  // ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/common.js
90334
- var require_common4 = __commonJS((exports) => {
90855
+ var require_common5 = __commonJS((exports) => {
90335
90856
  Object.defineProperty(exports, "__esModule", { value: true });
90336
90857
  exports.joinPathSegments = exports.replacePathSegmentSeparator = exports.isAppliedFilter = exports.isFatalError = undefined;
90337
90858
  function isFatalError(settings, error) {
@@ -90364,7 +90885,7 @@ var require_common4 = __commonJS((exports) => {
90364
90885
  // ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.js
90365
90886
  var require_reader = __commonJS((exports) => {
90366
90887
  Object.defineProperty(exports, "__esModule", { value: true });
90367
- var common = require_common4();
90888
+ var common = require_common5();
90368
90889
 
90369
90890
  class Reader {
90370
90891
  constructor(_root, _settings) {
@@ -90382,7 +90903,7 @@ var require_async4 = __commonJS((exports) => {
90382
90903
  var events_1 = __require("events");
90383
90904
  var fsScandir = require_out2();
90384
90905
  var fastq = require_queue();
90385
- var common = require_common4();
90906
+ var common = require_common5();
90386
90907
  var reader_1 = require_reader();
90387
90908
 
90388
90909
  class AsyncReader extends reader_1.default {
@@ -90554,7 +91075,7 @@ var require_stream = __commonJS((exports) => {
90554
91075
  var require_sync4 = __commonJS((exports) => {
90555
91076
  Object.defineProperty(exports, "__esModule", { value: true });
90556
91077
  var fsScandir = require_out2();
90557
- var common = require_common4();
91078
+ var common = require_common5();
90558
91079
  var reader_1 = require_reader();
90559
91080
 
90560
91081
  class SyncReader extends reader_1.default {
@@ -91213,7 +91734,7 @@ var require_flat_eslint = __commonJS((exports, module) => {
91213
91734
  var { FlatConfigArray } = require_flat_config_array();
91214
91735
  var LintResultCache = require_lint_result_cache();
91215
91736
  var FLAT_CONFIG_FILENAME = "eslint.config.js";
91216
- var debug = require_src2()("eslint:flat-eslint");
91737
+ var debug = require_src3()("eslint:flat-eslint");
91217
91738
  var removedFormatters = new Set(["table", "codeframe"]);
91218
91739
  var privateMembers = new WeakMap;
91219
91740
  var importedConfigFileModificationTime = new Map;
@@ -92069,7 +92590,7 @@ var require_rule_tester = __commonJS((exports, module) => {
92069
92590
  var { Linter, SourceCodeFixer, interpolate } = require_linter2();
92070
92591
  var CodePath = require_code_path();
92071
92592
  var ajv = require_ajv2()({ strictDefaults: true });
92072
- var espreePath = __require.resolve("espree");
92593
+ var espreePath = __require.resolve("/Users/jonathanburger/remotion/node_modules/.pnpm/espree@9.6.1/node_modules/espree/dist/espree.cjs");
92073
92594
  var parserSymbol = Symbol.for("eslint.RuleTester.parser");
92074
92595
  var { SourceCode } = require_source_code2();
92075
92596
  var testerDefaultConfig = { rules: {} };
@@ -190164,7 +190685,7 @@ var require_json_buffer = __commonJS((exports) => {
190164
190685
  });
190165
190686
 
190166
190687
  // ../../node_modules/.pnpm/keyv@4.5.4/node_modules/keyv/src/index.js
190167
- var require_src6 = __commonJS((exports, module) => {
190688
+ var require_src7 = __commonJS((exports, module) => {
190168
190689
  var EventEmitter = __require("events");
190169
190690
  var JSONB = require_json_buffer();
190170
190691
  var loadStore = (options) => {
@@ -190426,7 +190947,7 @@ var require_cache4 = __commonJS((exports, module) => {
190426
190947
  var __dirname = "/Users/jonathanburger/remotion/node_modules/.pnpm/flat-cache@4.0.1/node_modules/flat-cache/src";
190427
190948
  var path2 = __require("path");
190428
190949
  var fs = __require("fs");
190429
- var Keyv = require_src6();
190950
+ var Keyv = require_src7();
190430
190951
  var { writeJSON, tryParse } = require_utils6();
190431
190952
  var { del } = require_del2();
190432
190953
  var cache = {
@@ -447669,7 +448190,7 @@ var init_warn_native_media_tag = __esm2(() => {
447669
448190
  }
447670
448191
  });
447671
448192
  });
447672
- var require_src5 = __commonJS2((exports, module) => {
448193
+ var require_src6 = __commonJS2((exports, module) => {
447673
448194
  init_deterministic_randomness();
447674
448195
  init_even_dimensions();
447675
448196
  init_no_background_image();
@@ -447730,7 +448251,7 @@ var require_src5 = __commonJS2((exports, module) => {
447730
448251
  flatPlugin
447731
448252
  };
447732
448253
  });
447733
- var esm_default = require_src5();
448254
+ var esm_default = require_src6();
447734
448255
 
447735
448256
  // src/index.ts
447736
448257
  var import_eslint_plugin_react = __toESM(require_eslint_plugin_react(), 1);
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/eslint-config-flat"
4
4
  },
5
5
  "name": "@remotion/eslint-config-flat",
6
- "version": "4.0.269",
6
+ "version": "4.0.270",
7
7
  "description": "Default configuration for Remotion templates (ESLint >= 9)",
8
8
  "main": "dist/esm/index.mjs",
9
9
  "type": "module",
@@ -25,8 +25,8 @@
25
25
  "eslint-plugin-react": "7.37.4",
26
26
  "eslint-plugin-react-hooks": "5.2.0-canary-de1eaa26-20250124",
27
27
  "eslint": "9.19.0",
28
- "@remotion/eslint-plugin": "4.0.269",
29
- "@remotion/eslint-config-internal": "4.0.269"
28
+ "@remotion/eslint-config-internal": "4.0.270",
29
+ "@remotion/eslint-plugin": "4.0.270"
30
30
  },
31
31
  "keywords": [
32
32
  "remotion",