@remotion/eslint-config 4.0.423 → 4.0.425
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/auto-import-rules.d.ts +0 -1
- package/dist/auto-import-rules.js +0 -1
- package/dist/index.d.ts +40 -40
- package/package.json +7 -6
|
@@ -18,7 +18,6 @@ exports.autoImports = {
|
|
|
18
18
|
Easing: "import {Easing} from 'remotion'",
|
|
19
19
|
getInputProps: "import {getInputProps} from 'remotion'",
|
|
20
20
|
getStaticFiles: "import {getStaticFiles} from '@remotion/studio'",
|
|
21
|
-
watchStaticFiles: "import {watchStaticFiles} from '@remotion/studio'",
|
|
22
21
|
continueRender: "import {continueRender} from 'remotion'",
|
|
23
22
|
delayRender: "import {delayRender} from 'remotion'",
|
|
24
23
|
AbsoluteFill: "import {AbsoluteFill} from 'remotion'",
|
package/dist/index.d.ts
CHANGED
|
@@ -19,12 +19,6 @@ declare const _default: {
|
|
|
19
19
|
extends: string[];
|
|
20
20
|
parser: string;
|
|
21
21
|
rules: {
|
|
22
|
-
'react/jsx-no-useless-fragment': string;
|
|
23
|
-
'react/no-array-index-key': string;
|
|
24
|
-
'no-unused-vars': string;
|
|
25
|
-
'no-undef': string;
|
|
26
|
-
'no-shadow': string;
|
|
27
|
-
'@typescript-eslint/no-var-requires': string;
|
|
28
22
|
curly: number;
|
|
29
23
|
'lines-around-comment': number;
|
|
30
24
|
'max-len': number;
|
|
@@ -328,9 +322,9 @@ declare const _default: {
|
|
|
328
322
|
};
|
|
329
323
|
enforceForRenamedProperties?: undefined;
|
|
330
324
|
} | {
|
|
331
|
-
enforceForRenamedProperties: boolean;
|
|
332
325
|
VariableDeclarator?: undefined;
|
|
333
326
|
AssignmentExpression?: undefined;
|
|
327
|
+
enforceForRenamedProperties: boolean;
|
|
334
328
|
})[];
|
|
335
329
|
'no-useless-catch': string;
|
|
336
330
|
'react/button-has-type': string;
|
|
@@ -392,20 +386,13 @@ declare const _default: {
|
|
|
392
386
|
'react/react-in-jsx-scope': string;
|
|
393
387
|
'react/jsx-key': string;
|
|
394
388
|
'react/jsx-no-target-blank': string;
|
|
395
|
-
|
|
389
|
+
'no-unused-vars': string;
|
|
390
|
+
'no-undef': string;
|
|
391
|
+
'no-shadow': string;
|
|
392
|
+
'@typescript-eslint/no-var-requires': string;
|
|
396
393
|
'react/jsx-no-useless-fragment': string;
|
|
397
394
|
'react/no-array-index-key': string;
|
|
398
|
-
|
|
399
|
-
typeof: boolean;
|
|
400
|
-
})[];
|
|
401
|
-
'no-unused-vars': (string | {
|
|
402
|
-
vars: string;
|
|
403
|
-
args: string;
|
|
404
|
-
ignoreRestSiblings: boolean;
|
|
405
|
-
argsIgnorePattern: string;
|
|
406
|
-
caughtErrors: string;
|
|
407
|
-
caughtErrorsIgnorePattern: string;
|
|
408
|
-
})[];
|
|
395
|
+
} | {
|
|
409
396
|
curly: number;
|
|
410
397
|
'lines-around-comment': number;
|
|
411
398
|
'max-len': number;
|
|
@@ -709,9 +696,9 @@ declare const _default: {
|
|
|
709
696
|
};
|
|
710
697
|
enforceForRenamedProperties?: undefined;
|
|
711
698
|
} | {
|
|
712
|
-
enforceForRenamedProperties: boolean;
|
|
713
699
|
VariableDeclarator?: undefined;
|
|
714
700
|
AssignmentExpression?: undefined;
|
|
701
|
+
enforceForRenamedProperties: boolean;
|
|
715
702
|
})[];
|
|
716
703
|
'no-useless-catch': string;
|
|
717
704
|
'react/button-has-type': string;
|
|
@@ -773,15 +760,22 @@ declare const _default: {
|
|
|
773
760
|
'react/react-in-jsx-scope': string;
|
|
774
761
|
'react/jsx-key': string;
|
|
775
762
|
'react/jsx-no-target-blank': string;
|
|
763
|
+
'no-undef': (string | {
|
|
764
|
+
typeof: boolean;
|
|
765
|
+
})[];
|
|
766
|
+
'no-unused-vars': (string | {
|
|
767
|
+
vars: string;
|
|
768
|
+
args: string;
|
|
769
|
+
ignoreRestSiblings: boolean;
|
|
770
|
+
argsIgnorePattern: string;
|
|
771
|
+
caughtErrors: string;
|
|
772
|
+
caughtErrorsIgnorePattern: string;
|
|
773
|
+
})[];
|
|
774
|
+
'react/jsx-no-useless-fragment': string;
|
|
775
|
+
'react/no-array-index-key': string;
|
|
776
776
|
};
|
|
777
777
|
}[];
|
|
778
778
|
rules: {
|
|
779
|
-
'react/jsx-no-useless-fragment': string;
|
|
780
|
-
'react/no-array-index-key': string;
|
|
781
|
-
'no-unused-vars': string;
|
|
782
|
-
'no-undef': string;
|
|
783
|
-
'no-shadow': string;
|
|
784
|
-
'@typescript-eslint/no-var-requires': string;
|
|
785
779
|
curly: number;
|
|
786
780
|
'lines-around-comment': number;
|
|
787
781
|
'max-len': number;
|
|
@@ -1085,9 +1079,9 @@ declare const _default: {
|
|
|
1085
1079
|
};
|
|
1086
1080
|
enforceForRenamedProperties?: undefined;
|
|
1087
1081
|
} | {
|
|
1088
|
-
enforceForRenamedProperties: boolean;
|
|
1089
1082
|
VariableDeclarator?: undefined;
|
|
1090
1083
|
AssignmentExpression?: undefined;
|
|
1084
|
+
enforceForRenamedProperties: boolean;
|
|
1091
1085
|
})[];
|
|
1092
1086
|
'no-useless-catch': string;
|
|
1093
1087
|
'react/button-has-type': string;
|
|
@@ -1149,20 +1143,13 @@ declare const _default: {
|
|
|
1149
1143
|
'react/react-in-jsx-scope': string;
|
|
1150
1144
|
'react/jsx-key': string;
|
|
1151
1145
|
'react/jsx-no-target-blank': string;
|
|
1152
|
-
|
|
1146
|
+
'no-unused-vars': string;
|
|
1147
|
+
'no-undef': string;
|
|
1148
|
+
'no-shadow': string;
|
|
1149
|
+
'@typescript-eslint/no-var-requires': string;
|
|
1153
1150
|
'react/jsx-no-useless-fragment': string;
|
|
1154
1151
|
'react/no-array-index-key': string;
|
|
1155
|
-
|
|
1156
|
-
typeof: boolean;
|
|
1157
|
-
})[];
|
|
1158
|
-
'no-unused-vars': (string | {
|
|
1159
|
-
vars: string;
|
|
1160
|
-
args: string;
|
|
1161
|
-
ignoreRestSiblings: boolean;
|
|
1162
|
-
argsIgnorePattern: string;
|
|
1163
|
-
caughtErrors: string;
|
|
1164
|
-
caughtErrorsIgnorePattern: string;
|
|
1165
|
-
})[];
|
|
1152
|
+
} | {
|
|
1166
1153
|
curly: number;
|
|
1167
1154
|
'lines-around-comment': number;
|
|
1168
1155
|
'max-len': number;
|
|
@@ -1466,9 +1453,9 @@ declare const _default: {
|
|
|
1466
1453
|
};
|
|
1467
1454
|
enforceForRenamedProperties?: undefined;
|
|
1468
1455
|
} | {
|
|
1469
|
-
enforceForRenamedProperties: boolean;
|
|
1470
1456
|
VariableDeclarator?: undefined;
|
|
1471
1457
|
AssignmentExpression?: undefined;
|
|
1458
|
+
enforceForRenamedProperties: boolean;
|
|
1472
1459
|
})[];
|
|
1473
1460
|
'no-useless-catch': string;
|
|
1474
1461
|
'react/button-has-type': string;
|
|
@@ -1530,6 +1517,19 @@ declare const _default: {
|
|
|
1530
1517
|
'react/react-in-jsx-scope': string;
|
|
1531
1518
|
'react/jsx-key': string;
|
|
1532
1519
|
'react/jsx-no-target-blank': string;
|
|
1520
|
+
'no-undef': (string | {
|
|
1521
|
+
typeof: boolean;
|
|
1522
|
+
})[];
|
|
1523
|
+
'no-unused-vars': (string | {
|
|
1524
|
+
vars: string;
|
|
1525
|
+
args: string;
|
|
1526
|
+
ignoreRestSiblings: boolean;
|
|
1527
|
+
argsIgnorePattern: string;
|
|
1528
|
+
caughtErrors: string;
|
|
1529
|
+
caughtErrorsIgnorePattern: string;
|
|
1530
|
+
})[];
|
|
1531
|
+
'react/jsx-no-useless-fragment': string;
|
|
1532
|
+
'react/no-array-index-key': string;
|
|
1533
1533
|
};
|
|
1534
1534
|
settings: {
|
|
1535
1535
|
react: {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/eslint-config"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/eslint-config",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.425",
|
|
7
7
|
"description": "Default configuration for Remotion templates (ESLint <= 8)",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"files": [
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"lint": "eslint src",
|
|
14
|
-
"formatting": "prettier
|
|
15
|
-
"make": "
|
|
14
|
+
"formatting": "prettier src --check",
|
|
15
|
+
"make": "tsgo -d"
|
|
16
16
|
},
|
|
17
17
|
"bugs": {
|
|
18
18
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
@@ -24,13 +24,14 @@
|
|
|
24
24
|
"eslint": ">=7.15.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@remotion/eslint-plugin": "4.0.
|
|
27
|
+
"@remotion/eslint-plugin": "4.0.425",
|
|
28
28
|
"@typescript-eslint/eslint-plugin": "6.21.0",
|
|
29
29
|
"@typescript-eslint/parser": "6.21.0",
|
|
30
30
|
"eslint-plugin-react": "7.37.4",
|
|
31
31
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
32
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
33
|
-
"eslint": "9.19.0"
|
|
32
|
+
"@remotion/eslint-config-internal": "4.0.425",
|
|
33
|
+
"eslint": "9.19.0",
|
|
34
|
+
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
34
35
|
},
|
|
35
36
|
"keywords": [
|
|
36
37
|
"remotion",
|