vue-linters-config 0.3.13 → 0.3.15
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 +8 -6
- 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 n(e) {
|
|
8
8
|
return {
|
|
9
9
|
languageOptions: {
|
|
10
10
|
ecmaVersion: 2022,
|
|
@@ -13,7 +13,7 @@ function t(e) {
|
|
|
13
13
|
}
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
-
const
|
|
16
|
+
const t = {
|
|
17
17
|
ignores: [
|
|
18
18
|
"**/dist/",
|
|
19
19
|
"**/dev-dist/",
|
|
@@ -94,7 +94,7 @@ const n = {
|
|
|
94
94
|
],
|
|
95
95
|
"max-depth": ["error", 4],
|
|
96
96
|
"max-nested-callbacks": ["error", 4],
|
|
97
|
-
"max-params": ["error",
|
|
97
|
+
"max-params": ["error", 6],
|
|
98
98
|
"max-statements-per-line": ["error", { max: 1 }],
|
|
99
99
|
"new-cap": ["error", { newIsCap: !0, capIsNew: !1, properties: !0 }],
|
|
100
100
|
"no-array-constructor": "error",
|
|
@@ -249,7 +249,9 @@ const n = {
|
|
|
249
249
|
tabWidth: 2,
|
|
250
250
|
trailingComma: "es5",
|
|
251
251
|
useTabs: !1,
|
|
252
|
-
bracketSameLine: !1
|
|
252
|
+
bracketSameLine: !1,
|
|
253
|
+
arrowParens: "always",
|
|
254
|
+
endOfLine: "lf"
|
|
253
255
|
}, l = {
|
|
254
256
|
plugins: ["stylelint-prettier"],
|
|
255
257
|
extends: [
|
|
@@ -330,8 +332,8 @@ const n = {
|
|
|
330
332
|
}
|
|
331
333
|
};
|
|
332
334
|
export {
|
|
333
|
-
|
|
334
|
-
|
|
335
|
+
t as ignores,
|
|
336
|
+
n as options,
|
|
335
337
|
o as parser,
|
|
336
338
|
a as prettier,
|
|
337
339
|
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.15",
|
|
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": "7.1.1"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
18
|
-
"npm": ">=11.
|
|
19
|
-
"node": ">=
|
|
18
|
+
"npm": ">=11.3.0",
|
|
19
|
+
"node": ">=24.2.0"
|
|
20
20
|
}
|
|
21
21
|
}
|