@remotion/eslint-plugin 4.0.176 → 4.0.178

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/README.md +18 -0
  2. package/package.json +6 -3
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @remotion/eslint-plugin
2
+
3
+ Rules for writing Remotion code
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/eslint-plugin.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/eslint-plugin?minimal=true)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remotion/eslint-plugin --save-exact
11
+ ```
12
+
13
+ When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
14
+ Remove the `^` character from the version number to use the exact version.
15
+
16
+ ## Usage
17
+
18
+ See the [documentation](https://www.remotion.dev/docs/brownfield#install-the-eslint-plugin) for more information.
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
+ "repository": {
3
+ "url": "https://github.com/remotion-dev/remotion/tree/main/packages/eslint-plugin"
4
+ },
2
5
  "name": "@remotion/eslint-plugin",
3
- "version": "4.0.176",
4
- "description": "A set of rules helping you avoid common pitfalls in Remotion.",
6
+ "version": "4.0.178",
7
+ "description": "Rules for writing Remotion code",
5
8
  "main": "dist/index.js",
6
9
  "bugs": {
7
10
  "url": "https://github.com/remotion-dev/remotion/issues"
@@ -19,10 +22,10 @@
19
22
  "eslint": ">=7.0.0"
20
23
  },
21
24
  "devDependencies": {
22
- "eslint": "8.56.0",
23
25
  "vitest": "0.31.1"
24
26
  },
25
27
  "private": false,
28
+ "homepage": "https://www.remotion.dev/docs/brownfield#install-the-eslint-plugin",
26
29
  "scripts": {
27
30
  "test": "vitest --run"
28
31
  }