eslint-plugin-harlanzw 0.14.1 → 0.14.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 (2) hide show
  1. package/dist/index.mjs +15 -2
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import process from 'node:process';
4
4
  import { TextSourceCodeBase, ConfigCommentParser, Directive, VisitNodeStep } from '@eslint/plugin-kit';
5
5
  import { AST_NODE_TYPES } from '@typescript-eslint/utils';
6
6
 
7
- const version = "0.14.1";
7
+ const version = "0.14.2";
8
8
 
9
9
  const STRENGTH_PATTERNS = {
10
10
  strong: ["never", "must", "always", "under no circumstances", "absolutely", "required", "mandatory", "forbidden", "prohibited"],
@@ -3518,7 +3518,20 @@ const VUE_REACTIVITY_APIS = /* @__PURE__ */ new Set([
3518
3518
  // Dependency injection (composition-context only)
3519
3519
  "provide",
3520
3520
  "inject",
3521
- "hasInjectionContext"
3521
+ "hasInjectionContext",
3522
+ // Lifecycle hooks (composition-context only)
3523
+ "onBeforeMount",
3524
+ "onMounted",
3525
+ "onBeforeUpdate",
3526
+ "onUpdated",
3527
+ "onBeforeUnmount",
3528
+ "onUnmounted",
3529
+ "onActivated",
3530
+ "onDeactivated",
3531
+ "onErrorCaptured",
3532
+ "onRenderTracked",
3533
+ "onRenderTriggered",
3534
+ "onServerPrefetch"
3522
3535
  ]);
3523
3536
  const VUEUSE_REACTIVITY_APIS = /* @__PURE__ */ new Set([
3524
3537
  // Watch variants
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eslint-plugin-harlanzw",
3
3
  "type": "module",
4
- "version": "0.14.1",
4
+ "version": "0.14.2",
5
5
  "description": "Harlan's opinionated ESLint rules",
6
6
  "author": "Harlan Wilton <harlan@harlanzw.com>",
7
7
  "license": "MIT",