@ntnyq/eslint-config 2.7.0 → 2.7.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.
package/dist/index.cjs CHANGED
@@ -173,7 +173,8 @@ var GLOB_LOCKFILE = [
173
173
  "**/package-lock.json",
174
174
  "**/yarn.lock",
175
175
  "**/pnpm-lock.yaml",
176
- "**/bun.lockb"
176
+ "**/bun.lockb",
177
+ "**/deno.lock"
177
178
  ];
178
179
  var GLOB_EXCLUDE = [
179
180
  GLOB_NODE_MODULES,
@@ -194,12 +195,14 @@ var GLOB_EXCLUDE = [
194
195
  "**/components.d.ts",
195
196
  // unplugin-vue-router
196
197
  "**/typed-router.d.ts",
198
+ // vite-plugin-uni-pages
199
+ "**/uni-pages.d.ts",
197
200
  "**/coverage",
198
201
  "**/fixtures",
199
202
  "**/output",
200
203
  "**/public",
201
204
  "**/static",
202
- // VitePress VuePress
205
+ // VitePress and VuePress
203
206
  "**/?(.)temp",
204
207
  "**/?(.)cache",
205
208
  "**/.eslintcache",
@@ -1268,7 +1271,7 @@ var sortTsConfig = defineConfig([
1268
1271
  var jsonc = defineConfig([
1269
1272
  {
1270
1273
  name: "ntnyq/jsonc",
1271
- files: [GLOB_JSON, GLOB_JSON5, GLOB_JSONC, "**/*rc"],
1274
+ files: [GLOB_JSON, GLOB_JSON5, GLOB_JSONC],
1272
1275
  plugins: {
1273
1276
  jsonc: import_eslint_plugin_jsonc.default
1274
1277
  },
@@ -1363,6 +1366,8 @@ var vue = defineConfig([
1363
1366
  ...import_typescript_eslint.default.config({
1364
1367
  name: "ntnyq/vue/ts",
1365
1368
  files: [GLOB_VUE],
1369
+ // TODO: Remove this when `typescript-eslint` is aligned with `eslint`
1370
+ // @ts-expect-error - `typescript-eslint` is not aligned with eslint
1366
1371
  extends: typescriptCore
1367
1372
  }),
1368
1373
  {