vue-linters-config 0.3.8 → 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 +9 -7
  2. package/package.json +4 -4
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", "%"],
@@ -302,7 +302,7 @@ const t = {
302
302
  "5rem"
303
303
  ],
304
304
  "font-weight": ["$font-weight", "300", "400", "500", "700"],
305
- "line-height": ["1", "1.2", "1.3", "1.5", "2"],
305
+ "line-height": ["1", "1.2", "1.3", "1.4", "1.5", "2"],
306
306
  color: ["/^var/", "/^v-bind/", "unset"],
307
307
  "background-color": ["/^var/", "/^v-bind/", "unset"],
308
308
  "border-color": ["/^var/", "/^v-bind/", "unset"]
@@ -314,7 +314,9 @@ const t = {
314
314
  "max-nesting-depth": 4,
315
315
  "media-feature-name-allowed-list": ["max-width", "print"],
316
316
  "media-feature-name-no-vendor-prefix": !0,
317
- "media-feature-name-value-allowed-list": [{ "max-width": ["$mobile", "$tablet", "$notebook", "$desktop"] }],
317
+ "media-feature-name-value-allowed-list": [
318
+ { "max-width": ["640px", "960px", "$mobile", "$tablet", "$notebook", "$desktop"] }
319
+ ],
318
320
  "no-descending-specificity": null,
319
321
  "no-unknown-animations": !0,
320
322
  "number-max-precision": 3,
@@ -322,7 +324,7 @@ const t = {
322
324
  "selector-class-pattern": "^[a-z][a-zA-Z0-9]+$|.",
323
325
  "selector-pseudo-class-no-unknown": null,
324
326
  "time-min-milliseconds": 100,
325
- "unit-allowed-list": ["px", "rem", "%", "vh", "vw", "ms", "deg", "fr"],
327
+ "unit-allowed-list": ["px", "rem", "%", "vh", "dvh", "vw", "dvw", "ms", "deg", "fr"],
326
328
  "value-keyword-case": ["lower", { ignoreFunctions: ["v-bind"] }],
327
329
  "prettier/prettier": !0
328
330
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-linters-config",
3
- "version": "0.3.8",
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.8"
15
+ "vite": "6.0.2"
16
16
  },
17
17
  "engines": {
18
- "npm": ">=10.8.2",
19
- "node": ">=22.8.0"
18
+ "npm": ">=10.9.0",
19
+ "node": ">=23.2.0"
20
20
  }
21
21
  }