Skip to content

Commit 6f1d1cb

Browse files
committed
Setup ESLint for Vue
1 parent 35da213 commit 6f1d1cb

File tree

3 files changed

+224
-14
lines changed

3 files changed

+224
-14
lines changed

.eslintrc.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
extends: ["plugin:vue/recommended"],
3+
rules: {
4+
"vue/max-attributes-per-line": [
5+
"error",
6+
{
7+
singleline: {
8+
max: 10,
9+
allowFirstLine: true,
10+
},
11+
multiline: {
12+
max: 1,
13+
allowFirstLine: false,
14+
},
15+
},
16+
],
17+
},
18+
};

package.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"node-sass": "6.x",
2727
"papaparse": "^5.3.0",
2828
"prettier": "2.x",
29+
"prettier-eslint": "13.*",
2930
"regenerator-runtime": "0.x",
3031
"sass-loader": "10.x",
3132
"vue-cli-plugin-i18n": "1.x",
@@ -76,11 +77,5 @@
7677
"vue2-leaflet": "2.x",
7778
"vue2-leaflet-fullscreen": "1.x",
7879
"vuex": "3.x"
79-
},
80-
"eslintConfig": {
81-
"extends": [
82-
"plugin:vue/recommended"
83-
],
84-
"rules": {}
8580
}
8681
}

yarn.lock

+205-8
Original file line numberDiff line numberDiff line change
@@ -911,6 +911,21 @@
911911
minimatch "^3.0.4"
912912
strip-json-comments "^3.1.1"
913913

914+
"@eslint/eslintrc@^0.4.3":
915+
version "0.4.3"
916+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
917+
integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
918+
dependencies:
919+
ajv "^6.12.4"
920+
debug "^4.1.1"
921+
espree "^7.3.0"
922+
globals "^13.9.0"
923+
ignore "^4.0.6"
924+
import-fresh "^3.2.1"
925+
js-yaml "^3.13.1"
926+
minimatch "^3.0.4"
927+
strip-json-comments "^3.1.1"
928+
914929
"@fortawesome/fontawesome-common-types@^0.2.35":
915930
version "0.2.35"
916931
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.35.tgz#01dd3d054da07a00b764d78748df20daf2b317e9"
@@ -1189,6 +1204,11 @@
11891204
"@types/eslint" "*"
11901205
"@types/estree" "*"
11911206

1207+
"@types/eslint-visitor-keys@^1.0.0":
1208+
version "1.0.0"
1209+
resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d"
1210+
integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==
1211+
11921212
"@types/eslint@*":
11931213
version "7.28.0"
11941214
resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.28.0.tgz#7e41f2481d301c68e14f483fe10b017753ce8d5a"
@@ -1222,6 +1242,11 @@
12221242
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.8.tgz#edf1bf1dbf4e04413ca8e5b17b3b7d7d54b59818"
12231243
integrity sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg==
12241244

1245+
"@types/json-schema@^7.0.3":
1246+
version "7.0.9"
1247+
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d"
1248+
integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==
1249+
12251250
"@types/minimatch@*":
12261251
version "3.0.5"
12271252
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40"
@@ -1290,6 +1315,54 @@
12901315
anymatch "^3.0.0"
12911316
source-map "^0.6.0"
12921317

1318+
"@typescript-eslint/[email protected]":
1319+
version "3.10.1"
1320+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz#e179ffc81a80ebcae2ea04e0332f8b251345a686"
1321+
integrity sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==
1322+
dependencies:
1323+
"@types/json-schema" "^7.0.3"
1324+
"@typescript-eslint/types" "3.10.1"
1325+
"@typescript-eslint/typescript-estree" "3.10.1"
1326+
eslint-scope "^5.0.0"
1327+
eslint-utils "^2.0.0"
1328+
1329+
"@typescript-eslint/parser@^3.0.0":
1330+
version "3.10.1"
1331+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.10.1.tgz#1883858e83e8b442627e1ac6f408925211155467"
1332+
integrity sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==
1333+
dependencies:
1334+
"@types/eslint-visitor-keys" "^1.0.0"
1335+
"@typescript-eslint/experimental-utils" "3.10.1"
1336+
"@typescript-eslint/types" "3.10.1"
1337+
"@typescript-eslint/typescript-estree" "3.10.1"
1338+
eslint-visitor-keys "^1.1.0"
1339+
1340+
"@typescript-eslint/[email protected]":
1341+
version "3.10.1"
1342+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727"
1343+
integrity sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==
1344+
1345+
"@typescript-eslint/[email protected]":
1346+
version "3.10.1"
1347+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz#fd0061cc38add4fad45136d654408569f365b853"
1348+
integrity sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==
1349+
dependencies:
1350+
"@typescript-eslint/types" "3.10.1"
1351+
"@typescript-eslint/visitor-keys" "3.10.1"
1352+
debug "^4.1.1"
1353+
glob "^7.1.6"
1354+
is-glob "^4.0.1"
1355+
lodash "^4.17.15"
1356+
semver "^7.3.2"
1357+
tsutils "^3.17.1"
1358+
1359+
"@typescript-eslint/[email protected]":
1360+
version "3.10.1"
1361+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz#cd4274773e3eb63b2e870ac602274487ecd1e931"
1362+
integrity sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==
1363+
dependencies:
1364+
eslint-visitor-keys "^1.1.0"
1365+
12931366
"@vue/component-compiler-utils@^3.1.0":
12941367
version "3.2.2"
12951368
resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.2.2.tgz#2f7ed5feed82ff7f0284acc11d525ee7eff22460"
@@ -2126,7 +2199,7 @@ cell-orientation@^1.0.1:
21262199
resolved "https://registry.yarnpkg.com/cell-orientation/-/cell-orientation-1.0.1.tgz#b504ad96a66ad286d9edd985a2253d03b80d2850"
21272200
integrity sha1-tQStlqZq0obZ7dmFoiU9A7gNKFA=
21282201

2129-
chalk@^1.1.1:
2202+
chalk@^1.1.1, chalk@^1.1.3:
21302203
version "1.1.3"
21312204
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
21322205
integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
@@ -2425,6 +2498,11 @@ commander@^7.0.0, commander@^7.1.0:
24252498
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
24262499
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
24272500

2501+
common-tags@^1.4.0:
2502+
version "1.8.0"
2503+
resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
2504+
integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==
2505+
24282506
commondir@^1.0.1:
24292507
version "1.0.1"
24302508
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
@@ -3112,6 +3190,11 @@ dir-glob@^3.0.1:
31123190
dependencies:
31133191
path-type "^4.0.0"
31143192

3193+
dlv@^1.1.0:
3194+
version "1.1.3"
3195+
resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
3196+
integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
3197+
31153198
dns-equal@^1.0.0:
31163199
version "1.0.0"
31173200
resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
@@ -3440,15 +3523,15 @@ eslint-plugin-vue@^7.13.0:
34403523
semver "^7.3.2"
34413524
vue-eslint-parser "^7.8.0"
34423525

3443-
[email protected], eslint-scope@^5.1.1:
3526+
[email protected], eslint-scope@^5.0.0, eslint-scope@^5.1.1:
34443527
version "5.1.1"
34453528
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
34463529
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
34473530
dependencies:
34483531
esrecurse "^4.3.0"
34493532
estraverse "^4.1.1"
34503533

3451-
eslint-utils@^2.1.0:
3534+
eslint-utils@^2.0.0, eslint-utils@^2.1.0:
34523535
version "2.1.0"
34533536
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
34543537
integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
@@ -3511,6 +3594,52 @@ eslint@^7.30.0:
35113594
text-table "^0.2.0"
35123595
v8-compile-cache "^2.0.3"
35133596

3597+
eslint@^7.9.0:
3598+
version "7.32.0"
3599+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"
3600+
integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==
3601+
dependencies:
3602+
"@babel/code-frame" "7.12.11"
3603+
"@eslint/eslintrc" "^0.4.3"
3604+
"@humanwhocodes/config-array" "^0.5.0"
3605+
ajv "^6.10.0"
3606+
chalk "^4.0.0"
3607+
cross-spawn "^7.0.2"
3608+
debug "^4.0.1"
3609+
doctrine "^3.0.0"
3610+
enquirer "^2.3.5"
3611+
escape-string-regexp "^4.0.0"
3612+
eslint-scope "^5.1.1"
3613+
eslint-utils "^2.1.0"
3614+
eslint-visitor-keys "^2.0.0"
3615+
espree "^7.3.1"
3616+
esquery "^1.4.0"
3617+
esutils "^2.0.2"
3618+
fast-deep-equal "^3.1.3"
3619+
file-entry-cache "^6.0.1"
3620+
functional-red-black-tree "^1.0.1"
3621+
glob-parent "^5.1.2"
3622+
globals "^13.6.0"
3623+
ignore "^4.0.6"
3624+
import-fresh "^3.0.0"
3625+
imurmurhash "^0.1.4"
3626+
is-glob "^4.0.0"
3627+
js-yaml "^3.13.1"
3628+
json-stable-stringify-without-jsonify "^1.0.1"
3629+
levn "^0.4.1"
3630+
lodash.merge "^4.6.2"
3631+
minimatch "^3.0.4"
3632+
natural-compare "^1.4.0"
3633+
optionator "^0.9.1"
3634+
progress "^2.0.0"
3635+
regexpp "^3.1.0"
3636+
semver "^7.2.1"
3637+
strip-ansi "^6.0.0"
3638+
strip-json-comments "^3.1.0"
3639+
table "^6.0.9"
3640+
text-table "^0.2.0"
3641+
v8-compile-cache "^2.0.3"
3642+
35143643
esm@^3.2.13:
35153644
version "3.2.25"
35163645
resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10"
@@ -3539,7 +3668,7 @@ esprima@^4.0.0, esprima@^4.0.1:
35393668
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
35403669
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
35413670

3542-
esquery@^1.4.0:
3671+
esquery@^1.0.1, esquery@^1.4.0:
35433672
version "1.4.0"
35443673
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
35453674
integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
@@ -4389,7 +4518,7 @@ glob-to-regexp@^0.4.1:
43894518
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
43904519
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
43914520

4392-
glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.1:
4521+
glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@~7.1.1:
43934522
version "7.1.7"
43944523
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
43954524
integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
@@ -5596,7 +5725,7 @@ lodash.memoize@^4.1.2:
55965725
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
55975726
integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
55985727

5599-
lodash.merge@^4.6.2:
5728+
lodash.merge@^4.6.0, lodash.merge@^4.6.2:
56005729
version "4.6.2"
56015730
resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
56025731
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
@@ -5626,6 +5755,19 @@ lodash@^4.0.0, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.2
56265755
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
56275756
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
56285757

5758+
loglevel-colored-level-prefix@^1.0.0:
5759+
version "1.0.0"
5760+
resolved "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e"
5761+
integrity sha1-akAhj9x64V/HbD0PPmdsRlOIYD4=
5762+
dependencies:
5763+
chalk "^1.1.3"
5764+
loglevel "^1.4.1"
5765+
5766+
loglevel@^1.4.1:
5767+
version "1.7.1"
5768+
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197"
5769+
integrity sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==
5770+
56295771
lru-cache@^4.1.2:
56305772
version "4.1.5"
56315773
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
@@ -7062,7 +7204,25 @@ prelude-ls@~1.1.2:
70627204
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
70637205
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
70647206

7065-
7207+
prettier-eslint@13.*:
7208+
version "13.0.0"
7209+
resolved "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-13.0.0.tgz#769f5c04057278d071847d893ebc7b9817594184"
7210+
integrity sha512-P5K31qWgUOQCtJL/3tpvEe28KfP49qbr6MTVEXC7I2k7ci55bP3YDr+glhyCdhIzxGCVp2f8eobfQ5so52RIIA==
7211+
dependencies:
7212+
"@typescript-eslint/parser" "^3.0.0"
7213+
common-tags "^1.4.0"
7214+
dlv "^1.1.0"
7215+
eslint "^7.9.0"
7216+
indent-string "^4.0.0"
7217+
lodash.merge "^4.6.0"
7218+
loglevel-colored-level-prefix "^1.0.0"
7219+
prettier "^2.0.0"
7220+
pretty-format "^23.0.1"
7221+
require-relative "^0.8.7"
7222+
typescript "^3.9.3"
7223+
vue-eslint-parser "~7.1.0"
7224+
7225+
[email protected], prettier@^2.0.0:
70667226
version "2.3.2"
70677227
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d"
70687228
integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==
@@ -7080,6 +7240,14 @@ pretty-error@^3.0.3:
70807240
lodash "^4.17.20"
70817241
renderkid "^2.0.6"
70827242

7243+
pretty-format@^23.0.1:
7244+
version "23.6.0"
7245+
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"
7246+
integrity sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==
7247+
dependencies:
7248+
ansi-regex "^3.0.0"
7249+
ansi-styles "^3.2.0"
7250+
70837251
process-nextick-args@~2.0.0:
70847252
version "2.0.1"
70857253
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
@@ -7500,6 +7668,11 @@ require-main-filename@^2.0.0:
75007668
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
75017669
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
75027670

7671+
require-relative@^0.8.7:
7672+
version "0.8.7"
7673+
resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de"
7674+
integrity sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=
7675+
75037676
requires-port@^1.0.0:
75047677
version "1.0.0"
75057678
resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
@@ -8646,11 +8819,18 @@ trim-newlines@^3.0.0:
86468819
dependencies:
86478820
glob "^7.1.2"
86488821

8649-
tslib@^1.10.0:
8822+
tslib@^1.10.0, tslib@^1.8.1:
86508823
version "1.14.1"
86518824
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
86528825
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
86538826

8827+
tsutils@^3.17.1:
8828+
version "3.21.0"
8829+
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
8830+
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
8831+
dependencies:
8832+
tslib "^1.8.1"
8833+
86548834
tunnel-agent@^0.6.0:
86558835
version "0.6.0"
86568836
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
@@ -8752,6 +8932,11 @@ typedarray@^0.0.6:
87528932
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
87538933
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
87548934

8935+
typescript@^3.9.3:
8936+
version "3.9.10"
8937+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8"
8938+
integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==
8939+
87558940
un-eval@^1.2.0:
87568941
version "1.2.0"
87578942
resolved "https://registry.yarnpkg.com/un-eval/-/un-eval-1.2.0.tgz#22a95c650334d59d21697efae32612218ecad65f"
@@ -9063,6 +9248,18 @@ vue-eslint-parser@^7.8.0:
90639248
lodash "^4.17.21"
90649249
semver "^6.3.0"
90659250

9251+
vue-eslint-parser@~7.1.0:
9252+
version "7.1.1"
9253+
resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.1.1.tgz#c43c1c715ff50778b9a7e9a4e16921185f3425d3"
9254+
integrity sha512-8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==
9255+
dependencies:
9256+
debug "^4.1.1"
9257+
eslint-scope "^5.0.0"
9258+
eslint-visitor-keys "^1.1.0"
9259+
espree "^6.2.1"
9260+
esquery "^1.0.1"
9261+
lodash "^4.17.15"
9262+
90669263
vue-functional-data-merge@^3.1.0:
90679264
version "3.1.0"
90689265
resolved "https://registry.yarnpkg.com/vue-functional-data-merge/-/vue-functional-data-merge-3.1.0.tgz#08a7797583b7f35680587f8a1d51d729aa1dc657"

0 commit comments

Comments
 (0)