@remotion/eslint-config-flat 4.0.463 → 4.0.464
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.
- package/dist/esm/index.mjs +64 -78
- package/package.json +3 -3
package/dist/esm/index.mjs
CHANGED
|
@@ -4,29 +4,15 @@ var __getProtoOf = Object.getPrototypeOf;
|
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
function __accessProp(key) {
|
|
8
|
-
return this[key];
|
|
9
|
-
}
|
|
10
|
-
var __toESMCache_node;
|
|
11
|
-
var __toESMCache_esm;
|
|
12
7
|
var __toESM = (mod, isNodeMode, target) => {
|
|
13
|
-
var canCache = mod != null && typeof mod === "object";
|
|
14
|
-
if (canCache) {
|
|
15
|
-
var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
|
|
16
|
-
var cached = cache.get(mod);
|
|
17
|
-
if (cached)
|
|
18
|
-
return cached;
|
|
19
|
-
}
|
|
20
8
|
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
21
9
|
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
22
10
|
for (let key of __getOwnPropNames(mod))
|
|
23
11
|
if (!__hasOwnProp.call(to, key))
|
|
24
12
|
__defProp(to, key, {
|
|
25
|
-
get:
|
|
13
|
+
get: () => mod[key],
|
|
26
14
|
enumerable: true
|
|
27
15
|
});
|
|
28
|
-
if (canCache)
|
|
29
|
-
cache.set(mod, to);
|
|
30
16
|
return to;
|
|
31
17
|
};
|
|
32
18
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
@@ -5254,7 +5240,7 @@ var require_ExportVisitor = __commonJS((exports) => {
|
|
|
5254
5240
|
ExportDefaultDeclaration(node) {
|
|
5255
5241
|
if (node.declaration.type === types_1.AST_NODE_TYPES.Identifier) {
|
|
5256
5242
|
this.visit(node.declaration);
|
|
5257
|
-
}
|
|
5243
|
+
} else {}
|
|
5258
5244
|
}
|
|
5259
5245
|
ExportNamedDeclaration(node) {
|
|
5260
5246
|
if (node.source) {
|
|
@@ -5262,7 +5248,7 @@ var require_ExportVisitor = __commonJS((exports) => {
|
|
|
5262
5248
|
}
|
|
5263
5249
|
if (!node.declaration) {
|
|
5264
5250
|
this.visitChildren(node);
|
|
5265
|
-
}
|
|
5251
|
+
} else {}
|
|
5266
5252
|
}
|
|
5267
5253
|
ExportSpecifier(node) {
|
|
5268
5254
|
if (node.exportKind === "type") {
|
|
@@ -9516,7 +9502,7 @@ var require_estraverse = __commonJS((exports) => {
|
|
|
9516
9502
|
this.parent = parent;
|
|
9517
9503
|
this.key = key;
|
|
9518
9504
|
}
|
|
9519
|
-
Reference.prototype.replace = function
|
|
9505
|
+
Reference.prototype.replace = function replace(node) {
|
|
9520
9506
|
this.parent[this.key] = node;
|
|
9521
9507
|
};
|
|
9522
9508
|
Reference.prototype.remove = function remove() {
|
|
@@ -9537,13 +9523,13 @@ var require_estraverse = __commonJS((exports) => {
|
|
|
9537
9523
|
function Controller() {}
|
|
9538
9524
|
Controller.prototype.path = function path() {
|
|
9539
9525
|
var i, iz, j, jz, result, element;
|
|
9540
|
-
function addToPath(result2,
|
|
9541
|
-
if (Array.isArray(
|
|
9542
|
-
for (j = 0, jz =
|
|
9543
|
-
result2.push(
|
|
9526
|
+
function addToPath(result2, path) {
|
|
9527
|
+
if (Array.isArray(path)) {
|
|
9528
|
+
for (j = 0, jz = path.length;j < jz; ++j) {
|
|
9529
|
+
result2.push(path[j]);
|
|
9544
9530
|
}
|
|
9545
9531
|
} else {
|
|
9546
|
-
result2.push(
|
|
9532
|
+
result2.push(path);
|
|
9547
9533
|
}
|
|
9548
9534
|
}
|
|
9549
9535
|
if (!this.__current.path) {
|
|
@@ -9623,7 +9609,7 @@ var require_estraverse = __commonJS((exports) => {
|
|
|
9623
9609
|
function isProperty(nodeType, key) {
|
|
9624
9610
|
return (nodeType === Syntax.ObjectExpression || nodeType === Syntax.ObjectPattern) && key === "properties";
|
|
9625
9611
|
}
|
|
9626
|
-
Controller.prototype.traverse = function
|
|
9612
|
+
Controller.prototype.traverse = function traverse(root, visitor) {
|
|
9627
9613
|
var worklist, leavelist, element, node, nodeType, ret, key, current, current2, candidates, candidate, sentinel;
|
|
9628
9614
|
this.__initialize(root, visitor);
|
|
9629
9615
|
sentinel = {};
|
|
@@ -9690,7 +9676,7 @@ var require_estraverse = __commonJS((exports) => {
|
|
|
9690
9676
|
}
|
|
9691
9677
|
}
|
|
9692
9678
|
};
|
|
9693
|
-
Controller.prototype.replace = function
|
|
9679
|
+
Controller.prototype.replace = function replace(root, visitor) {
|
|
9694
9680
|
var worklist, leavelist, node, nodeType, target, element, current, current2, candidates, candidate, sentinel, outer, key;
|
|
9695
9681
|
function removeElem(element2) {
|
|
9696
9682
|
var i, key2, nextElem, parent;
|
|
@@ -10765,7 +10751,7 @@ var require_estraverse2 = __commonJS((exports) => {
|
|
|
10765
10751
|
this.parent = parent;
|
|
10766
10752
|
this.key = key;
|
|
10767
10753
|
}
|
|
10768
|
-
Reference.prototype.replace = function
|
|
10754
|
+
Reference.prototype.replace = function replace(node) {
|
|
10769
10755
|
this.parent[this.key] = node;
|
|
10770
10756
|
};
|
|
10771
10757
|
Reference.prototype.remove = function remove() {
|
|
@@ -10786,13 +10772,13 @@ var require_estraverse2 = __commonJS((exports) => {
|
|
|
10786
10772
|
function Controller() {}
|
|
10787
10773
|
Controller.prototype.path = function path() {
|
|
10788
10774
|
var i, iz, j, jz, result, element;
|
|
10789
|
-
function addToPath(result2,
|
|
10790
|
-
if (Array.isArray(
|
|
10791
|
-
for (j = 0, jz =
|
|
10792
|
-
result2.push(
|
|
10775
|
+
function addToPath(result2, path) {
|
|
10776
|
+
if (Array.isArray(path)) {
|
|
10777
|
+
for (j = 0, jz = path.length;j < jz; ++j) {
|
|
10778
|
+
result2.push(path[j]);
|
|
10793
10779
|
}
|
|
10794
10780
|
} else {
|
|
10795
|
-
result2.push(
|
|
10781
|
+
result2.push(path);
|
|
10796
10782
|
}
|
|
10797
10783
|
}
|
|
10798
10784
|
if (!this.__current.path) {
|
|
@@ -10880,7 +10866,7 @@ var require_estraverse2 = __commonJS((exports) => {
|
|
|
10880
10866
|
}
|
|
10881
10867
|
return false;
|
|
10882
10868
|
}
|
|
10883
|
-
Controller.prototype.traverse = function
|
|
10869
|
+
Controller.prototype.traverse = function traverse(root, visitor) {
|
|
10884
10870
|
var worklist, leavelist, element, node, nodeType, ret, key, current, current2, candidates, candidate, sentinel;
|
|
10885
10871
|
this.__initialize(root, visitor);
|
|
10886
10872
|
sentinel = {};
|
|
@@ -10953,7 +10939,7 @@ var require_estraverse2 = __commonJS((exports) => {
|
|
|
10953
10939
|
}
|
|
10954
10940
|
}
|
|
10955
10941
|
};
|
|
10956
|
-
Controller.prototype.replace = function
|
|
10942
|
+
Controller.prototype.replace = function replace(root, visitor) {
|
|
10957
10943
|
var worklist, leavelist, node, nodeType, target, element, current, current2, candidates, candidate, sentinel, outer, key;
|
|
10958
10944
|
function removeElem(element2) {
|
|
10959
10945
|
var i, key2, nextElem, parent;
|
|
@@ -12322,7 +12308,7 @@ var require_define_data_property = __commonJS((exports, module) => {
|
|
|
12322
12308
|
// ../../node_modules/.bun/has-property-descriptors@1.0.2/node_modules/has-property-descriptors/index.js
|
|
12323
12309
|
var require_has_property_descriptors = __commonJS((exports, module) => {
|
|
12324
12310
|
var $defineProperty = require_es_define_property();
|
|
12325
|
-
var hasPropertyDescriptors = function
|
|
12311
|
+
var hasPropertyDescriptors = function hasPropertyDescriptors() {
|
|
12326
12312
|
return !!$defineProperty;
|
|
12327
12313
|
};
|
|
12328
12314
|
hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() {
|
|
@@ -12441,7 +12427,7 @@ var require_round = __commonJS((exports, module) => {
|
|
|
12441
12427
|
|
|
12442
12428
|
// ../../node_modules/.bun/math-intrinsics@1.1.0/node_modules/math-intrinsics/isNaN.js
|
|
12443
12429
|
var require_isNaN = __commonJS((exports, module) => {
|
|
12444
|
-
module.exports = Number.isNaN || function
|
|
12430
|
+
module.exports = Number.isNaN || function isNaN(a) {
|
|
12445
12431
|
return a !== a;
|
|
12446
12432
|
};
|
|
12447
12433
|
});
|
|
@@ -12544,7 +12530,7 @@ var require_implementation2 = __commonJS((exports, module) => {
|
|
|
12544
12530
|
var toStr = Object.prototype.toString;
|
|
12545
12531
|
var max = Math.max;
|
|
12546
12532
|
var funcType = "[object Function]";
|
|
12547
|
-
var concatty = function
|
|
12533
|
+
var concatty = function concatty(a, b) {
|
|
12548
12534
|
var arr = [];
|
|
12549
12535
|
for (var i = 0;i < a.length; i += 1) {
|
|
12550
12536
|
arr[i] = a[i];
|
|
@@ -12554,7 +12540,7 @@ var require_implementation2 = __commonJS((exports, module) => {
|
|
|
12554
12540
|
}
|
|
12555
12541
|
return arr;
|
|
12556
12542
|
};
|
|
12557
|
-
var slicy = function
|
|
12543
|
+
var slicy = function slicy(arrLike, offset) {
|
|
12558
12544
|
var arr = [];
|
|
12559
12545
|
for (var i = offset || 0, j = 0;i < arrLike.length; i += 1, j += 1) {
|
|
12560
12546
|
arr[j] = arrLike[i];
|
|
@@ -12595,7 +12581,7 @@ var require_implementation2 = __commonJS((exports, module) => {
|
|
|
12595
12581
|
}
|
|
12596
12582
|
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
12597
12583
|
if (target.prototype) {
|
|
12598
|
-
var Empty = function
|
|
12584
|
+
var Empty = function Empty() {};
|
|
12599
12585
|
Empty.prototype = target.prototype;
|
|
12600
12586
|
bound.prototype = new Empty;
|
|
12601
12587
|
Empty.prototype = null;
|
|
@@ -12833,7 +12819,7 @@ var require_get_intrinsic = __commonJS((exports, module) => {
|
|
|
12833
12819
|
}
|
|
12834
12820
|
}
|
|
12835
12821
|
var errorProto;
|
|
12836
|
-
var doEval = function
|
|
12822
|
+
var doEval = function doEval(name) {
|
|
12837
12823
|
var value;
|
|
12838
12824
|
if (name === "%AsyncFunction%") {
|
|
12839
12825
|
value = getEvalledConstructor("async function () {}");
|
|
@@ -12842,12 +12828,12 @@ var require_get_intrinsic = __commonJS((exports, module) => {
|
|
|
12842
12828
|
} else if (name === "%AsyncGeneratorFunction%") {
|
|
12843
12829
|
value = getEvalledConstructor("async function* () {}");
|
|
12844
12830
|
} else if (name === "%AsyncGenerator%") {
|
|
12845
|
-
var fn =
|
|
12831
|
+
var fn = doEval("%AsyncGeneratorFunction%");
|
|
12846
12832
|
if (fn) {
|
|
12847
12833
|
value = fn.prototype;
|
|
12848
12834
|
}
|
|
12849
12835
|
} else if (name === "%AsyncIteratorPrototype%") {
|
|
12850
|
-
var gen =
|
|
12836
|
+
var gen = doEval("%AsyncGenerator%");
|
|
12851
12837
|
if (gen && getProto) {
|
|
12852
12838
|
value = getProto(gen.prototype);
|
|
12853
12839
|
}
|
|
@@ -12918,7 +12904,7 @@ var require_get_intrinsic = __commonJS((exports, module) => {
|
|
|
12918
12904
|
var $exec = bind.call($call, RegExp.prototype.exec);
|
|
12919
12905
|
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
12920
12906
|
var reEscapeChar = /\\(\\)?/g;
|
|
12921
|
-
var stringToPath = function
|
|
12907
|
+
var stringToPath = function stringToPath(string) {
|
|
12922
12908
|
var first = $strSlice(string, 0, 1);
|
|
12923
12909
|
var last = $strSlice(string, -1);
|
|
12924
12910
|
if (first === "%" && last !== "%") {
|
|
@@ -12932,7 +12918,7 @@ var require_get_intrinsic = __commonJS((exports, module) => {
|
|
|
12932
12918
|
});
|
|
12933
12919
|
return result;
|
|
12934
12920
|
};
|
|
12935
|
-
var getBaseIntrinsic = function
|
|
12921
|
+
var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
|
|
12936
12922
|
var intrinsicName = name;
|
|
12937
12923
|
var alias;
|
|
12938
12924
|
if (hasOwn(LEGACY_ALIASES, intrinsicName)) {
|
|
@@ -13765,7 +13751,7 @@ var require_CodePointAt = __commonJS((exports, module) => {
|
|
|
13765
13751
|
// ../../node_modules/.bun/math-intrinsics@1.1.0/node_modules/math-intrinsics/isFinite.js
|
|
13766
13752
|
var require_isFinite = __commonJS((exports, module) => {
|
|
13767
13753
|
var $isNaN = require_isNaN();
|
|
13768
|
-
module.exports = function
|
|
13754
|
+
module.exports = function isFinite(x) {
|
|
13769
13755
|
return (typeof x === "number" || typeof x === "bigint") && !$isNaN(x) && x !== Infinity && x !== -Infinity;
|
|
13770
13756
|
};
|
|
13771
13757
|
});
|
|
@@ -14442,7 +14428,7 @@ var require_OrdinaryObjectCreate = __commonJS((exports, module) => {
|
|
|
14442
14428
|
if (proto === null) {
|
|
14443
14429
|
throw new $SyntaxError("native Object.create support is required to create null objects");
|
|
14444
14430
|
}
|
|
14445
|
-
var T = function
|
|
14431
|
+
var T = function T() {};
|
|
14446
14432
|
T.prototype = proto;
|
|
14447
14433
|
O = new T;
|
|
14448
14434
|
}
|
|
@@ -14599,7 +14585,7 @@ var require_shams2 = __commonJS((exports, module) => {
|
|
|
14599
14585
|
var require_is_string = __commonJS((exports, module) => {
|
|
14600
14586
|
var callBound = require_call_bound();
|
|
14601
14587
|
var $strValueOf = callBound("String.prototype.valueOf");
|
|
14602
|
-
var tryStringObject = function
|
|
14588
|
+
var tryStringObject = function tryStringObject(value) {
|
|
14603
14589
|
try {
|
|
14604
14590
|
$strValueOf(value);
|
|
14605
14591
|
return true;
|
|
@@ -14718,9 +14704,9 @@ var require_GetIterator = __commonJS((exports, module) => {
|
|
|
14718
14704
|
var require_CompletionRecord = __commonJS((exports, module) => {
|
|
14719
14705
|
var $SyntaxError = require_syntax();
|
|
14720
14706
|
var SLOT = require_internal_slot();
|
|
14721
|
-
var CompletionRecord = function
|
|
14722
|
-
if (!(this instanceof
|
|
14723
|
-
return new
|
|
14707
|
+
var CompletionRecord = function CompletionRecord(type, value) {
|
|
14708
|
+
if (!(this instanceof CompletionRecord)) {
|
|
14709
|
+
return new CompletionRecord(type, value);
|
|
14724
14710
|
}
|
|
14725
14711
|
if (type !== "normal" && type !== "break" && type !== "continue" && type !== "return" && type !== "throw") {
|
|
14726
14712
|
throw new $SyntaxError('Assertion failed: `type` must be one of "normal", "break", "continue", "return", or "throw"');
|
|
@@ -15527,7 +15513,7 @@ var require_es20152 = __commonJS((exports, module) => {
|
|
|
15527
15513
|
}
|
|
15528
15514
|
throw new TypeError("No default value");
|
|
15529
15515
|
};
|
|
15530
|
-
var GetMethod = function
|
|
15516
|
+
var GetMethod = function GetMethod(O, P) {
|
|
15531
15517
|
var func = O[P];
|
|
15532
15518
|
if (func !== null && typeof func !== "undefined") {
|
|
15533
15519
|
if (!isCallable(func)) {
|
|
@@ -16344,7 +16330,7 @@ var require_SameValueZero = __commonJS((exports, module) => {
|
|
|
16344
16330
|
|
|
16345
16331
|
// ../../node_modules/.bun/es-abstract@1.23.9/node_modules/es-abstract/helpers/isNaN.js
|
|
16346
16332
|
var require_isNaN2 = __commonJS((exports, module) => {
|
|
16347
|
-
module.exports = Number.isNaN || function
|
|
16333
|
+
module.exports = Number.isNaN || function isNaN(a) {
|
|
16348
16334
|
return a !== a;
|
|
16349
16335
|
};
|
|
16350
16336
|
});
|
|
@@ -16565,7 +16551,7 @@ var require_globalthis = __commonJS((exports, module) => {
|
|
|
16565
16551
|
|
|
16566
16552
|
// ../../node_modules/.bun/functions-have-names@1.2.3/node_modules/functions-have-names/index.js
|
|
16567
16553
|
var require_functions_have_names = __commonJS((exports, module) => {
|
|
16568
|
-
var functionsHaveNames = function
|
|
16554
|
+
var functionsHaveNames = function functionsHaveNames() {
|
|
16569
16555
|
return typeof function f() {}.name === "string";
|
|
16570
16556
|
};
|
|
16571
16557
|
var gOPD = Object.getOwnPropertyDescriptor;
|
|
@@ -16644,8 +16630,8 @@ var require_implementation10 = __commonJS((exports, module) => {
|
|
|
16644
16630
|
var iterProto = require_iterator();
|
|
16645
16631
|
var callBound = require_call_bound();
|
|
16646
16632
|
var $isPrototypeOf = callBound("Object.prototype.isPrototypeOf");
|
|
16647
|
-
var $Iterator = typeof Iterator === "function" ? Iterator : function
|
|
16648
|
-
if (!(this instanceof
|
|
16633
|
+
var $Iterator = typeof Iterator === "function" ? Iterator : function Iterator() {
|
|
16634
|
+
if (!(this instanceof Iterator) || this.constructor === Iterator || !$isPrototypeOf(Iterator, this.constructor)) {
|
|
16649
16635
|
throw new $TypeError("`Iterator` can not be called or constructed directly");
|
|
16650
16636
|
}
|
|
16651
16637
|
};
|
|
@@ -16890,7 +16876,7 @@ var require_CreateIteratorFromClosure = __commonJS((exports, module) => {
|
|
|
16890
16876
|
var every = require_every();
|
|
16891
16877
|
var SLOT = require_internal_slot();
|
|
16892
16878
|
var safeConcat = require_safe_array_concat();
|
|
16893
|
-
var isString = function
|
|
16879
|
+
var isString = function isString(slot) {
|
|
16894
16880
|
return typeof slot === "string";
|
|
16895
16881
|
};
|
|
16896
16882
|
module.exports = function CreateIteratorFromClosure(closure, generatorBrand, proto) {
|
|
@@ -17142,7 +17128,7 @@ var require_IteratorHelperPrototype = __commonJS((exports, module) => {
|
|
|
17142
17128
|
};
|
|
17143
17129
|
setToStringTag(implementation, "Iterator Helper");
|
|
17144
17130
|
} else {
|
|
17145
|
-
IteratorHelper = function
|
|
17131
|
+
IteratorHelper = function IteratorHelper() {};
|
|
17146
17132
|
IteratorHelper.prototype = iterProto;
|
|
17147
17133
|
implementation = new IteratorHelper;
|
|
17148
17134
|
delete implementation.constructor;
|
|
@@ -19100,7 +19086,7 @@ var require_doctrine = __commonJS((exports) => {
|
|
|
19100
19086
|
}
|
|
19101
19087
|
hasOwnProperty = function() {
|
|
19102
19088
|
var func = Object.prototype.hasOwnProperty;
|
|
19103
|
-
return function
|
|
19089
|
+
return function hasOwnProperty(obj, name) {
|
|
19104
19090
|
return func.call(obj, name);
|
|
19105
19091
|
};
|
|
19106
19092
|
}();
|
|
@@ -19610,7 +19596,7 @@ var require_doctrine = __commonJS((exports) => {
|
|
|
19610
19596
|
variation: ["parseVariation"],
|
|
19611
19597
|
version: ["parseDescription"]
|
|
19612
19598
|
};
|
|
19613
|
-
TagParser.prototype.parse = function
|
|
19599
|
+
TagParser.prototype.parse = function parse() {
|
|
19614
19600
|
var i, iz, sequences, method;
|
|
19615
19601
|
if (!this._title) {
|
|
19616
19602
|
if (!this.addError("Missing or invalid title")) {
|
|
@@ -20025,7 +20011,7 @@ var require_path_parse = __commonJS((exports, module) => {
|
|
|
20025
20011
|
var require_node_modules_paths = __commonJS((exports, module) => {
|
|
20026
20012
|
var path = __require("path");
|
|
20027
20013
|
var parse = path.parse || require_path_parse();
|
|
20028
|
-
var getNodeModulesDirs = function
|
|
20014
|
+
var getNodeModulesDirs = function getNodeModulesDirs(absoluteStart, modules) {
|
|
20029
20015
|
var prefix = "/";
|
|
20030
20016
|
if (/^([A-Za-z]:)/.test(absoluteStart)) {
|
|
20031
20017
|
prefix = "";
|
|
@@ -20333,14 +20319,14 @@ var require_async = __commonJS((exports, module) => {
|
|
|
20333
20319
|
cb(null, realpathErr ? x : realPath);
|
|
20334
20320
|
});
|
|
20335
20321
|
};
|
|
20336
|
-
var maybeRealpath = function
|
|
20322
|
+
var maybeRealpath = function maybeRealpath(realpath, x, opts, cb) {
|
|
20337
20323
|
if (!opts || !opts.preserveSymlinks) {
|
|
20338
20324
|
realpath(x, cb);
|
|
20339
20325
|
} else {
|
|
20340
20326
|
cb(null, x);
|
|
20341
20327
|
}
|
|
20342
20328
|
};
|
|
20343
|
-
var defaultReadPackage = function
|
|
20329
|
+
var defaultReadPackage = function defaultReadPackage(readFile, pkgfile, cb) {
|
|
20344
20330
|
readFile(pkgfile, function(readFileErr, body) {
|
|
20345
20331
|
if (readFileErr)
|
|
20346
20332
|
cb(readFileErr);
|
|
@@ -20354,7 +20340,7 @@ var require_async = __commonJS((exports, module) => {
|
|
|
20354
20340
|
}
|
|
20355
20341
|
});
|
|
20356
20342
|
};
|
|
20357
|
-
var getPackageCandidates = function
|
|
20343
|
+
var getPackageCandidates = function getPackageCandidates(x, start, opts) {
|
|
20358
20344
|
var dirs = nodeModulesPaths(start, opts, x);
|
|
20359
20345
|
for (var i = 0;i < dirs.length; i++) {
|
|
20360
20346
|
dirs[i] = path.join(dirs[i], x);
|
|
@@ -20683,16 +20669,16 @@ var require_sync = __commonJS((exports, module) => {
|
|
|
20683
20669
|
}
|
|
20684
20670
|
return x;
|
|
20685
20671
|
};
|
|
20686
|
-
var maybeRealpathSync = function
|
|
20672
|
+
var maybeRealpathSync = function maybeRealpathSync(realpathSync, x, opts) {
|
|
20687
20673
|
if (!opts || !opts.preserveSymlinks) {
|
|
20688
20674
|
return realpathSync(x);
|
|
20689
20675
|
}
|
|
20690
20676
|
return x;
|
|
20691
20677
|
};
|
|
20692
|
-
var defaultReadPackageSync = function
|
|
20678
|
+
var defaultReadPackageSync = function defaultReadPackageSync(readFileSync, pkgfile) {
|
|
20693
20679
|
return JSON.parse(readFileSync(pkgfile));
|
|
20694
20680
|
};
|
|
20695
|
-
var getPackageCandidates = function
|
|
20681
|
+
var getPackageCandidates = function getPackageCandidates(x, start, opts) {
|
|
20696
20682
|
var dirs = nodeModulesPaths(start, opts, x);
|
|
20697
20683
|
for (var i = 0;i < dirs.length; i++) {
|
|
20698
20684
|
dirs[i] = path.join(dirs[i], x);
|
|
@@ -25140,10 +25126,10 @@ var require_expressions = __commonJS((exports) => {
|
|
|
25140
25126
|
TSNonNullExpression: _TSNonNullExpression2.default,
|
|
25141
25127
|
AssignmentExpression: _AssignmentExpression2.default
|
|
25142
25128
|
};
|
|
25143
|
-
var noop = function
|
|
25129
|
+
var noop = function noop() {
|
|
25144
25130
|
return null;
|
|
25145
25131
|
};
|
|
25146
|
-
var errorMessage = function
|
|
25132
|
+
var errorMessage = function errorMessage(expression) {
|
|
25147
25133
|
return "The prop value with an expression type of " + expression + " could not be resolved. Please file an issue ( https://github.com/jsx-eslint/jsx-ast-utils/issues/new ) to get this fixed immediately.";
|
|
25148
25134
|
};
|
|
25149
25135
|
function extract(value) {
|
|
@@ -25295,7 +25281,7 @@ var require_getPropValue = __commonJS((exports) => {
|
|
|
25295
25281
|
function _interopRequireDefault(obj) {
|
|
25296
25282
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
25297
25283
|
}
|
|
25298
|
-
var extractValue = function
|
|
25284
|
+
var extractValue = function extractValue(attribute, extractor) {
|
|
25299
25285
|
if (attribute && attribute.type === "JSXAttribute") {
|
|
25300
25286
|
if (attribute.value === null) {
|
|
25301
25287
|
return true;
|
|
@@ -27970,25 +27956,25 @@ var require_minimatch = __commonJS((exports, module) => {
|
|
|
27970
27956
|
return minimatch;
|
|
27971
27957
|
}
|
|
27972
27958
|
var orig = minimatch;
|
|
27973
|
-
var m = function
|
|
27959
|
+
var m = function minimatch(p, pattern, options) {
|
|
27974
27960
|
return orig(p, pattern, ext(def, options));
|
|
27975
27961
|
};
|
|
27976
|
-
m.Minimatch = function
|
|
27962
|
+
m.Minimatch = function Minimatch(pattern, options) {
|
|
27977
27963
|
return new orig.Minimatch(pattern, ext(def, options));
|
|
27978
27964
|
};
|
|
27979
27965
|
m.Minimatch.defaults = function defaults(options) {
|
|
27980
27966
|
return orig.defaults(ext(def, options)).Minimatch;
|
|
27981
27967
|
};
|
|
27982
|
-
m.filter = function
|
|
27968
|
+
m.filter = function filter(pattern, options) {
|
|
27983
27969
|
return orig.filter(pattern, ext(def, options));
|
|
27984
27970
|
};
|
|
27985
27971
|
m.defaults = function defaults(options) {
|
|
27986
27972
|
return orig.defaults(ext(def, options));
|
|
27987
27973
|
};
|
|
27988
|
-
m.makeRe = function
|
|
27974
|
+
m.makeRe = function makeRe(pattern, options) {
|
|
27989
27975
|
return orig.makeRe(pattern, ext(def, options));
|
|
27990
27976
|
};
|
|
27991
|
-
m.braceExpand = function
|
|
27977
|
+
m.braceExpand = function braceExpand(pattern, options) {
|
|
27992
27978
|
return orig.braceExpand(pattern, ext(def, options));
|
|
27993
27979
|
};
|
|
27994
27980
|
m.match = function(list, pattern, options) {
|
|
@@ -31501,7 +31487,7 @@ var require_Set = __commonJS((exports, module) => {
|
|
|
31501
31487
|
return false;
|
|
31502
31488
|
}
|
|
31503
31489
|
}();
|
|
31504
|
-
module.exports = function
|
|
31490
|
+
module.exports = function Set(O, P, V, Throw) {
|
|
31505
31491
|
if (!isObject(O)) {
|
|
31506
31492
|
throw new $TypeError("Assertion failed: `O` must be an Object");
|
|
31507
31493
|
}
|
|
@@ -31545,7 +31531,7 @@ var require_CreateRegExpStringIterator = __commonJS((exports, module) => {
|
|
|
31545
31531
|
var isObject = require_isObject();
|
|
31546
31532
|
var SLOT = require_internal_slot();
|
|
31547
31533
|
var setToStringTag = require_es_set_tostringtag();
|
|
31548
|
-
var RegExpStringIterator = function
|
|
31534
|
+
var RegExpStringIterator = function RegExpStringIterator(R, S, global2, fullUnicode) {
|
|
31549
31535
|
if (typeof S !== "string") {
|
|
31550
31536
|
throw new $TypeError("`S` must be a string");
|
|
31551
31537
|
}
|
|
@@ -31717,7 +31703,7 @@ var require_implementation20 = __commonJS((exports, module) => {
|
|
|
31717
31703
|
var $RegExp = GetIntrinsic("%RegExp%");
|
|
31718
31704
|
var $indexOf = callBound("String.prototype.indexOf");
|
|
31719
31705
|
var regexpMatchAllPolyfill = require_polyfill_regexp_matchall();
|
|
31720
|
-
var getMatcher = function
|
|
31706
|
+
var getMatcher = function getMatcher(regexp) {
|
|
31721
31707
|
var matcherPolyfill = regexpMatchAllPolyfill();
|
|
31722
31708
|
if (hasSymbols && typeof Symbol.matchAll === "symbol") {
|
|
31723
31709
|
var matcher = GetMethod(regexp, Symbol.matchAll);
|
|
@@ -34572,7 +34558,7 @@ var require_jsx_one_expression_per_line = __commonJS((exports, module) => {
|
|
|
34572
34558
|
if (line === closingElementStartLine) {
|
|
34573
34559
|
nextChild = closingElement;
|
|
34574
34560
|
}
|
|
34575
|
-
}
|
|
34561
|
+
} else {}
|
|
34576
34562
|
function spaceBetweenPrev() {
|
|
34577
34563
|
return (prevChild.type === "Literal" || prevChild.type === "JSXText") && / $/.test(prevChild.raw) || (child.type === "Literal" || child.type === "JSXText") && /^ /.test(child.raw) || getSourceCode(context).isSpaceBetweenTokens(prevChild, child);
|
|
34578
34564
|
}
|
|
@@ -46255,7 +46241,7 @@ var require_eslint_plugin_react_hooks_production = __commonJS((exports) => {
|
|
|
46255
46241
|
var require_eslint_plugin_react_hooks = __commonJS((exports, module) => {
|
|
46256
46242
|
if (true) {
|
|
46257
46243
|
module.exports = require_eslint_plugin_react_hooks_production();
|
|
46258
|
-
}
|
|
46244
|
+
} else {}
|
|
46259
46245
|
});
|
|
46260
46246
|
|
|
46261
46247
|
// src/index.ts
|
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.
|
|
6
|
+
"version": "4.0.464",
|
|
7
7
|
"description": "Default configuration for Remotion templates (ESLint >= 9)",
|
|
8
8
|
"main": "dist/esm/index.mjs",
|
|
9
9
|
"type": "module",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"eslint": ">=9"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@remotion/eslint-plugin": "4.0.
|
|
31
|
+
"@remotion/eslint-plugin": "4.0.464",
|
|
32
32
|
"@eslint/js": "9.19.0",
|
|
33
33
|
"eslint-plugin-react": "7.37.4",
|
|
34
34
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
35
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
35
|
+
"@remotion/eslint-config-internal": "4.0.464",
|
|
36
36
|
"eslint": "9.19.0",
|
|
37
37
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
38
38
|
},
|