@geoql/doctor-core 1.2.1 → 1.3.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.
- package/dist/index.d.ts +65 -20
- package/dist/index.js +2213 -1930
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/schema.json +28 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geoql/doctor-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Audit engine for @geoql/vue-doctor and @geoql/nuxt-doctor. Hybrid two-pass: @vue/compiler-sfc template AST + oxlint subprocess. TypeScript, ESM.",
|
|
6
6
|
"keywords": [
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"semver": "^7.8.5",
|
|
54
54
|
"tinyglobby": "^0.2.17",
|
|
55
55
|
"zod": "^4.4.3",
|
|
56
|
-
"@geoql/oxlint-plugin-nuxt-doctor": "1.1.
|
|
57
|
-
"@geoql/oxlint-plugin-vue-doctor": "^1.
|
|
56
|
+
"@geoql/oxlint-plugin-nuxt-doctor": "1.1.1",
|
|
57
|
+
"@geoql/oxlint-plugin-vue-doctor": "^1.2.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/node": "^25.9.4",
|
package/schema.json
CHANGED
|
@@ -172,6 +172,10 @@
|
|
|
172
172
|
"type": "string",
|
|
173
173
|
"enum": ["error", "warn", "info", "off"]
|
|
174
174
|
},
|
|
175
|
+
"vue-doctor/reactivity/no-fresh-deps-in-watch": {
|
|
176
|
+
"type": "string",
|
|
177
|
+
"enum": ["error", "warn", "info", "off"]
|
|
178
|
+
},
|
|
175
179
|
"vue-doctor/composition/prefer-script-setup-for-new-files": {
|
|
176
180
|
"type": "string",
|
|
177
181
|
"enum": ["error", "warn", "info", "off"]
|
|
@@ -180,10 +184,26 @@
|
|
|
180
184
|
"type": "string",
|
|
181
185
|
"enum": ["error", "warn", "info", "off"]
|
|
182
186
|
},
|
|
187
|
+
"vue-doctor/composition/no-pinia-store-in-setup": {
|
|
188
|
+
"type": "string",
|
|
189
|
+
"enum": ["error", "warn", "info", "off"]
|
|
190
|
+
},
|
|
183
191
|
"vue-doctor/performance/prefer-defineAsyncComponent-on-route": {
|
|
184
192
|
"type": "string",
|
|
185
193
|
"enum": ["error", "warn", "info", "off"]
|
|
186
194
|
},
|
|
195
|
+
"vue-doctor/performance/prefer-module-scope-static-value": {
|
|
196
|
+
"type": "string",
|
|
197
|
+
"enum": ["error", "warn", "info", "off"]
|
|
198
|
+
},
|
|
199
|
+
"vue-doctor/performance/prefer-module-scope-pure-function": {
|
|
200
|
+
"type": "string",
|
|
201
|
+
"enum": ["error", "warn", "info", "off"]
|
|
202
|
+
},
|
|
203
|
+
"vue-doctor/performance/prefer-stable-empty-fallback": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"enum": ["error", "warn", "info", "off"]
|
|
206
|
+
},
|
|
187
207
|
"vue-doctor/template/v-for-has-key": {
|
|
188
208
|
"type": "string",
|
|
189
209
|
"enum": ["error", "warn", "info", "off"]
|
|
@@ -208,6 +228,14 @@
|
|
|
208
228
|
"type": "string",
|
|
209
229
|
"enum": ["error", "warn", "info", "off"]
|
|
210
230
|
},
|
|
231
|
+
"vue-doctor/template/no-random-key": {
|
|
232
|
+
"type": "string",
|
|
233
|
+
"enum": ["error", "warn", "info", "off"]
|
|
234
|
+
},
|
|
235
|
+
"vue-doctor/template/no-v-memo-in-vapor": {
|
|
236
|
+
"type": "string",
|
|
237
|
+
"enum": ["error", "warn", "info", "off"]
|
|
238
|
+
},
|
|
211
239
|
"vue-doctor/sfc/no-mixed-options-and-composition-api": {
|
|
212
240
|
"type": "string",
|
|
213
241
|
"enum": ["error", "warn", "info", "off"]
|