@remotion/eslint-config 3.0.11 → 3.0.15

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/index.d.ts CHANGED
@@ -200,7 +200,6 @@ declare const _default: {
200
200
  "for-direction": string;
201
201
  "getter-return": string;
202
202
  "no-async-promise-executor": string;
203
- "no-await-in-loop": string;
204
203
  "no-compare-neg-zero": string;
205
204
  "no-cond-assign": string;
206
205
  "no-constant-condition": string;
@@ -656,7 +655,6 @@ declare const _default: {
656
655
  "for-direction": string;
657
656
  "getter-return": string;
658
657
  "no-async-promise-executor": string;
659
- "no-await-in-loop": string;
660
658
  "no-compare-neg-zero": string;
661
659
  "no-cond-assign": string;
662
660
  "no-constant-condition": string;
package/dist/index.js CHANGED
@@ -134,7 +134,6 @@ const getRules = (typescript) => {
134
134
  "for-direction": "error",
135
135
  "getter-return": "error",
136
136
  "no-async-promise-executor": "error",
137
- "no-await-in-loop": "error",
138
137
  "no-compare-neg-zero": "error",
139
138
  "no-cond-assign": "error",
140
139
  "no-constant-condition": "error",
@@ -195,10 +195,10 @@ const allowESLintShareableConfig = () => {
195
195
  const originalLoadPlugin = ConfigArrayFactory.prototype._loadPlugin;
196
196
  if (eslintMajorVersion === 6) {
197
197
  // ESLint 6.x
198
- ConfigArrayFactory.prototype._loadPlugin = function (name, importerPath, importerName) {
198
+ ConfigArrayFactory.prototype._loadPlugin = function (_name, importerPath, _importerName) {
199
199
  const originalResolve = ModuleResolver.resolve;
200
200
  try {
201
- ModuleResolver.resolve = function (moduleName, relativeToPath) {
201
+ ModuleResolver.resolve = function (moduleName, _relativeToPath) {
202
202
  // resolve using importerPath instead of relativeToPath
203
203
  return originalResolve.call(this, moduleName, importerPath);
204
204
  };
@@ -211,10 +211,10 @@ const allowESLintShareableConfig = () => {
211
211
  }
212
212
  else {
213
213
  // ESLint 7.x || 8.x
214
- ConfigArrayFactory.prototype._loadPlugin = function (name, ctx) {
214
+ ConfigArrayFactory.prototype._loadPlugin = function (_name, ctx) {
215
215
  const originalResolve = ModuleResolver.resolve;
216
216
  try {
217
- ModuleResolver.resolve = function (moduleName, relativeToPath) {
217
+ ModuleResolver.resolve = function (moduleName, _relativeToPath) {
218
218
  // resolve using ctx.filePath instead of relativeToPath
219
219
  return originalResolve.call(this, moduleName, ctx.filePath);
220
220
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/eslint-config",
3
- "version": "3.0.11",
3
+ "version": "3.0.15",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -16,7 +16,7 @@
16
16
  "author": "Jonny Burger <jonny@remotion.dev>",
17
17
  "license": "ISC",
18
18
  "dependencies": {
19
- "@remotion/eslint-plugin": "3.0.11",
19
+ "@remotion/eslint-plugin": "3.0.15",
20
20
  "@typescript-eslint/eslint-plugin": "5.19.0",
21
21
  "@typescript-eslint/parser": "5.19.0",
22
22
  "eslint-plugin-10x": "1.5.2",
@@ -29,7 +29,7 @@
29
29
  "devDependencies": {
30
30
  "@types/node": "17.0.17",
31
31
  "eslint": "8.13.0",
32
- "typescript": "^4.5.5"
32
+ "typescript": "^4.7.0"
33
33
  },
34
34
  "keywords": [
35
35
  "remotion",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "7bdd2de3305f669cefecfdbda7f555df1480d9c9"
45
+ "gitHead": "955b43714a53713963f862d3e9aec86de85f1ebd"
46
46
  }