@remotion/eslint-plugin 4.0.0-preload.13 → 4.0.0-spawn.13
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/rules/deterministic-randomness.js +1 -1
- package/dist/rules/even-dimensions.js +1 -1
- package/dist/rules/no-duration-frames-infinity.js +1 -1
- package/dist/rules/no-mp4-import.js +1 -1
- package/dist/rules/no-string-assets.js +1 -1
- package/dist/rules/volume-callback.js +1 -1
- package/dist/rules/warn-native-media-tag.js +1 -1
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const utils_1 = require("@typescript-eslint/utils");
|
|
4
|
-
const createRule = utils_1.ESLintUtils.RuleCreator((
|
|
4
|
+
const createRule = utils_1.ESLintUtils.RuleCreator(() => {
|
|
5
5
|
return `https://github.com/remotion-dev/remotion`;
|
|
6
6
|
});
|
|
7
7
|
const DeterministicRandomness = [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const utils_1 = require("@typescript-eslint/utils");
|
|
4
|
-
const createRule = utils_1.ESLintUtils.RuleCreator((
|
|
4
|
+
const createRule = utils_1.ESLintUtils.RuleCreator(() => {
|
|
5
5
|
return `https://github.com/remotion-dev/remotion`;
|
|
6
6
|
});
|
|
7
7
|
const EvenDimensions = "Videos rendered in H264/H265 codec do not support dimensions that are not divisible by 2. Make the number even to resolve this warning. Ignore this warning if you don't plan on rendering this video with a H264 or H265 codec.";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const utils_1 = require("@typescript-eslint/utils");
|
|
4
|
-
const createRule = utils_1.ESLintUtils.RuleCreator((
|
|
4
|
+
const createRule = utils_1.ESLintUtils.RuleCreator(() => {
|
|
5
5
|
return `https://github.com/remotion-dev/remotion`;
|
|
6
6
|
});
|
|
7
7
|
const DurationInFrames = "Infinity is now the default, so you can remove the prop.";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const utils_1 = require("@typescript-eslint/utils");
|
|
4
|
-
const createRule = utils_1.ESLintUtils.RuleCreator((
|
|
4
|
+
const createRule = utils_1.ESLintUtils.RuleCreator(() => {
|
|
5
5
|
return `https://github.com/remotion-dev/remotion`;
|
|
6
6
|
});
|
|
7
7
|
const NoMP4Import = "Importing MP4 will work while you are previewing the video, but will not work while rendering since Puppeteer does not include the codecs necessary for MP4 videos. Convert the video to WebM first.";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const utils_1 = require("@typescript-eslint/utils");
|
|
4
|
-
const createRule = utils_1.ESLintUtils.RuleCreator((
|
|
4
|
+
const createRule = utils_1.ESLintUtils.RuleCreator(() => {
|
|
5
5
|
return `https://github.com/remotion-dev/remotion`;
|
|
6
6
|
});
|
|
7
7
|
const NoStringAssets = [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const utils_1 = require("@typescript-eslint/utils");
|
|
4
|
-
const createRule = utils_1.ESLintUtils.RuleCreator((
|
|
4
|
+
const createRule = utils_1.ESLintUtils.RuleCreator(() => {
|
|
5
5
|
return `https://github.com/remotion-dev/remotion`;
|
|
6
6
|
});
|
|
7
7
|
const VolumeCallback = "Prefer a callback function for setting the volume: `volume={(f) => interpolate(...)}`. See https://www.remotion.dev/docs/using-audio/#controlling-volume";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const utils_1 = require("@typescript-eslint/utils");
|
|
4
|
-
const createRule = utils_1.ESLintUtils.RuleCreator((
|
|
4
|
+
const createRule = utils_1.ESLintUtils.RuleCreator(() => {
|
|
5
5
|
return `https://github.com/remotion-dev/remotion`;
|
|
6
6
|
});
|
|
7
7
|
const NoNativeImgTag = "Prefer the <Img /> tag from 'remotion' package, because it will wait until the image is loaded when you are rendering your video.";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/eslint-plugin",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-spawn.13+5f3607e8b",
|
|
4
4
|
"description": "A set of rules helping you avoid common pitfalls in Remotion.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsc -d",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"eslint": "8.13.0",
|
|
21
21
|
"jest": "^27.2.4",
|
|
22
22
|
"ts-jest": "^27.0.5",
|
|
23
|
-
"typescript": "^4.
|
|
23
|
+
"typescript": "^4.7.0"
|
|
24
24
|
},
|
|
25
25
|
"private": false,
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "5f3607e8b8b958cf0604798639c8d901e9f2a295"
|
|
27
27
|
}
|