vue-linters-config 0.3.9 → 0.3.11
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.js +10 -9
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ function o(e, r) {
|
|
|
4
4
|
languageOptions: { parser: e, parserOptions: { parser: r } }
|
|
5
5
|
};
|
|
6
6
|
}
|
|
7
|
-
function
|
|
7
|
+
function t(e) {
|
|
8
8
|
return {
|
|
9
9
|
languageOptions: {
|
|
10
10
|
ecmaVersion: 2022,
|
|
@@ -13,9 +13,10 @@ function n(e) {
|
|
|
13
13
|
}
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
-
const
|
|
16
|
+
const n = {
|
|
17
17
|
ignores: [
|
|
18
18
|
"**/dist/",
|
|
19
|
+
"**/dev-dist/",
|
|
19
20
|
"**/coverage/",
|
|
20
21
|
"**/public/",
|
|
21
22
|
"**/storybook-static/",
|
|
@@ -267,10 +268,10 @@ const t = {
|
|
|
267
268
|
"declaration-property-unit-allowed-list": [
|
|
268
269
|
{
|
|
269
270
|
"font-size": ["rem"],
|
|
270
|
-
width: ["px", "%", "vw"],
|
|
271
|
-
height: ["px", "%", "vh"],
|
|
272
|
-
"max-width": ["px", "%", "vw"],
|
|
273
|
-
"max-height": ["px", "%", "vh"],
|
|
271
|
+
width: ["px", "%", "vw", "dvw"],
|
|
272
|
+
height: ["px", "%", "vh", "dvh"],
|
|
273
|
+
"max-width": ["px", "%", "vw", "dvw"],
|
|
274
|
+
"max-height": ["px", "%", "vh", "dvh"],
|
|
274
275
|
gap: ["px", "%"],
|
|
275
276
|
"grid-gap": ["px", "%"],
|
|
276
277
|
"/^border/": ["px", "%"],
|
|
@@ -324,14 +325,14 @@ const t = {
|
|
|
324
325
|
"selector-class-pattern": "^[a-z][a-zA-Z0-9]+$|.",
|
|
325
326
|
"selector-pseudo-class-no-unknown": null,
|
|
326
327
|
"time-min-milliseconds": 100,
|
|
327
|
-
"unit-allowed-list": ["px", "rem", "%", "vh", "vw", "ms", "deg", "fr"],
|
|
328
|
+
"unit-allowed-list": ["px", "rem", "%", "vh", "dvh", "vw", "dvw", "ms", "deg", "fr"],
|
|
328
329
|
"value-keyword-case": ["lower", { ignoreFunctions: ["v-bind"] }],
|
|
329
330
|
"prettier/prettier": !0
|
|
330
331
|
}
|
|
331
332
|
};
|
|
332
333
|
export {
|
|
333
|
-
|
|
334
|
-
|
|
334
|
+
n as ignores,
|
|
335
|
+
t as options,
|
|
335
336
|
o as parser,
|
|
336
337
|
a as prettier,
|
|
337
338
|
i as rules,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-linters-config",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
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": "
|
|
15
|
+
"vite": "6.0.11"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
18
|
-
"npm": ">=
|
|
19
|
-
"node": ">=
|
|
18
|
+
"npm": ">=11.0.0",
|
|
19
|
+
"node": ">=23.6.0"
|
|
20
20
|
}
|
|
21
21
|
}
|