vue-linters-config 0.3.9 → 0.3.10

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.js +5 -5
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -267,10 +267,10 @@ const t = {
267
267
  "declaration-property-unit-allowed-list": [
268
268
  {
269
269
  "font-size": ["rem"],
270
- width: ["px", "%", "vw"],
271
- height: ["px", "%", "vh"],
272
- "max-width": ["px", "%", "vw"],
273
- "max-height": ["px", "%", "vh"],
270
+ width: ["px", "%", "vw", "dvw"],
271
+ height: ["px", "%", "vh", "dvh"],
272
+ "max-width": ["px", "%", "vw", "dvw"],
273
+ "max-height": ["px", "%", "vh", "dvh"],
274
274
  gap: ["px", "%"],
275
275
  "grid-gap": ["px", "%"],
276
276
  "/^border/": ["px", "%"],
@@ -324,7 +324,7 @@ const t = {
324
324
  "selector-class-pattern": "^[a-z][a-zA-Z0-9]+$|.",
325
325
  "selector-pseudo-class-no-unknown": null,
326
326
  "time-min-milliseconds": 100,
327
- "unit-allowed-list": ["px", "rem", "%", "vh", "vw", "ms", "deg", "fr"],
327
+ "unit-allowed-list": ["px", "rem", "%", "vh", "dvh", "vw", "dvw", "ms", "deg", "fr"],
328
328
  "value-keyword-case": ["lower", { ignoreFunctions: ["v-bind"] }],
329
329
  "prettier/prettier": !0
330
330
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-linters-config",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "type": "module",
5
5
  "description": "Vue 3 linters config for eslint, prettier, stylelint",
6
6
  "author": "Aleksandr Dergunov <dergunovs@mail.ru>",
@@ -12,10 +12,10 @@
12
12
  "build": "vite build"
13
13
  },
14
14
  "devDependencies": {
15
- "vite": "5.4.10"
15
+ "vite": "6.0.2"
16
16
  },
17
17
  "engines": {
18
18
  "npm": ">=10.9.0",
19
- "node": ">=22.10.0"
19
+ "node": ">=23.2.0"
20
20
  }
21
21
  }