@nest-boot/eslint-config 7.0.0-beta.0 → 7.0.0-beta.2

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 (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/index.js +8 -6
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @nest-boot/eslint-config
2
2
 
3
+ ## 7.0.0-beta.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 20f3262: fix: 重构 eslint-plugin 和移除 queue 模块
8
+ - Updated dependencies [20f3262]
9
+ - @nest-boot/eslint-plugin@7.0.0-beta.2
10
+
11
+ ## 7.0.0-beta.1
12
+
13
+ ### Patch Changes
14
+
15
+ - b5e6548: 重新发布版本
16
+ - Updated dependencies [b5e6548]
17
+ - @nest-boot/eslint-plugin@7.0.0-beta.1
18
+
3
19
  ## 7.0.0-beta.0
4
20
 
5
21
  ### Major Changes
package/index.js CHANGED
@@ -28,7 +28,7 @@ module.exports = [
28
28
  parser: tsParser,
29
29
  parserOptions: {
30
30
  sourceType: "module",
31
- project: true,
31
+ project: ["tsconfig.json"],
32
32
  },
33
33
  globals: {
34
34
  process: "readonly",
@@ -81,11 +81,13 @@ module.exports = [
81
81
  ],
82
82
 
83
83
  // NestBoot 自定义规则
84
- "@nest-boot/entity-constructor": "error",
85
- "@nest-boot/entity-property-no-optional-or-non-null-assertion": "error",
86
- "@nest-boot/entity-property-nullable": "error",
87
- "@nest-boot/graphql-field-arguments-match-property-type": "error",
88
- "@nest-boot/graphql-resolver-method-return-type": "error",
84
+ "@nest-boot/entity-field-definite-assignment": "error",
85
+ "@nest-boot/entity-property-config-from-types": "error",
86
+ "@nest-boot/graphql-field-definite-assignment": "error",
87
+ "@nest-boot/graphql-field-config-from-types": "error",
88
+ "@nest-boot/import-bullmq": "error",
89
+ "@nest-boot/import-graphql": "error",
90
+ "@nest-boot/import-mikro-orm": "error",
89
91
  },
90
92
  },
91
93
 
package/package.json CHANGED
@@ -1,24 +1,24 @@
1
1
  {
2
2
  "name": "@nest-boot/eslint-config",
3
- "version": "7.0.0-beta.0",
3
+ "version": "7.0.0-beta.2",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "license": "MIT",
7
7
  "devDependencies": {
8
8
  "@eslint/eslintrc": "^3.3.1",
9
- "@eslint/js": "^9.28.0",
10
- "@nest-boot/eslint-plugin": "^7.0.0-beta.0",
11
- "@typescript-eslint/eslint-plugin": "^8.33.1",
12
- "@typescript-eslint/parser": "^8.33.1",
13
- "eslint": "^9.28.0",
14
- "eslint-config-prettier": "^10.1.5",
9
+ "@eslint/js": "^9.36.0",
10
+ "@nest-boot/eslint-plugin": "^7.0.0-beta.2",
11
+ "@typescript-eslint/eslint-plugin": "^8.44.1",
12
+ "@typescript-eslint/parser": "^8.44.1",
13
+ "eslint": "^9.36.0",
14
+ "eslint-config-prettier": "^10.1.8",
15
15
  "eslint-config-standard": "^17.1.0",
16
- "eslint-plugin-import": "^2.31.0",
17
- "eslint-plugin-n": "^17.19.0",
16
+ "eslint-plugin-import": "^2.32.0",
17
+ "eslint-plugin-n": "^17.23.1",
18
18
  "eslint-plugin-promise": "^7.2.1",
19
19
  "eslint-plugin-simple-import-sort": "^12.1.1",
20
- "typescript": "^5.8.3",
21
- "typescript-eslint": "^8.33.1"
20
+ "typescript": "^5.9.2",
21
+ "typescript-eslint": "^8.44.1"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "@eslint/eslintrc": "^3.0.0",
@@ -34,7 +34,7 @@
34
34
  "eslint-plugin-simple-import-sort": "^12.0.0",
35
35
  "typescript": "^5.0.0",
36
36
  "typescript-eslint": "^8.0.0",
37
- "@nest-boot/eslint-plugin": "^7.0.0-beta.07.0.0-beta.0"
37
+ "@nest-boot/eslint-plugin": "^7.0.0-beta.27.0.0-beta.2"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"