@arrirpc/eslint-plugin 0.43.2 → 0.45.0

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 +5 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,15 +14,15 @@ pnpm i --save-dev @arrirpc/eslint-plugin
14
14
 
15
15
  ### Use the default recommended configuration
16
16
 
17
- ```json
17
+ ```jsonc
18
18
  {
19
- "extends": ["plugin:@arrirpc/recommended"]
19
+ "extends": ["plugin:@arrirpc/recommended"],
20
20
  }
21
21
  ```
22
22
 
23
23
  ### Access the rules directly
24
24
 
25
- ```json
25
+ ```jsonc
26
26
  {
27
27
  "plugins": ["@arrirpc"],
28
28
  "rules": {
@@ -33,7 +33,7 @@ pnpm i --save-dev @arrirpc/eslint-plugin
33
33
  // check to see if an ID has been assigned to a.discriminator() schemas
34
34
  "@arrirpc/no-anonymous-discriminator": 2,
35
35
  // check to see if an ID has been assigned to a.recursive() schemas
36
- "@arrirpc/no-anonymous-recursive": 2
37
- }
36
+ "@arrirpc/no-anonymous-recursive": 2,
37
+ },
38
38
  }
39
39
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arrirpc/eslint-plugin",
3
- "version": "0.43.2",
3
+ "version": "0.45.0",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "joshmossas",
@@ -12,7 +12,7 @@
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "https://github.com/modiimedia/arri.git",
15
- "directory": "packages/eslint-plugin"
15
+ "directory": "tooling/eslint-plugin"
16
16
  },
17
17
  "main": "./dist/index.cjs",
18
18
  "module": "./dist/index.mjs",