Skip to content

Commit 8fe0dc4

Browse files
committed
tweak eslint settings to upgrade version
1 parent be7ec07 commit 8fe0dc4

7 files changed

Lines changed: 119 additions & 97 deletions

File tree

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = {
3232
"@typescript-eslint/prefer-for-of": "error",
3333
"@typescript-eslint/prefer-function-type": "error",
3434
"@typescript-eslint/prefer-namespace-keyword": "error",
35-
"@typescript-eslint/prefer-nullish-coalescing": "error",
35+
"@typescript-eslint/prefer-nullish-coalescing": "warn",
3636
"@typescript-eslint/no-explicit-any": "off",
3737
"@typescript-eslint/indent": "off",
3838
"@typescript-eslint/member-delimiter-style": [

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@
4848
"@babel/preset-env": "^7.27.2",
4949
"@babel/preset-typescript": "^7.27.1",
5050
"@types/jest": "^29.5.14",
51-
"@typescript-eslint/eslint-plugin": "^8.32.1",
52-
"@typescript-eslint/parser": "^8.32.1",
51+
"@typescript-eslint/eslint-plugin": "^7.18.0",
52+
"@typescript-eslint/parser": "^7.18.0",
5353
"babel-jest": "^29.7.0",
5454
"babel-loader": "^10.0.0",
5555
"commitizen": "^4.3.1",
5656
"concurrently": "^9.1.2",
5757
"cz-conventional-changelog": "3.3.0",
5858
"eslint": "^8.57.1",
59-
"eslint-config-prettier": "^10.1.5",
59+
"eslint-config-prettier": "^7.2.0",
6060
"eslint-plugin-import": "^2.31.0",
6161
"eslint-plugin-prefer-arrow": "^1.2.3",
6262
"husky": "^9.1.7",

prettier.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ module.exports = {
66
singleQuote: false,
77
trailingComma: "es5",
88
bracketSpacing: true,
9-
jsxBracketSameLine: false,
109
arrowParens: "avoid",
1110
rangeStart: 0,
1211
rangeEnd: Infinity,

src/feature/eventType.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/naming-convention */
12
const EVENT_TYPES = {
23
"treatmentPlan.activated": "treatmentPlan.activated",
34
"patient.selected": "patient.selected",

src/fullscript.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/naming-convention */
12
type FullscriptDomain =
23
| "https://ca.fullscript.com"
34
| "https://us.fullscript.com"

src/utils/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const tokenizeData = async (patientInfo, fullscriptOptions) => {
3333
const tokenizedInfo = await fetch(`${fsDomain}/api/embeddable/tokenize`, {
3434
method: "POST",
3535
body: JSON.stringify({ data: patientInfo }),
36+
// eslint-disable-next-line @typescript-eslint/naming-convention
3637
headers: { "Content-Type": "application/json" },
3738
}).then(res => res.json());
3839

yarn.lock

Lines changed: 112 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1411,7 +1411,7 @@ __metadata:
14111411
languageName: node
14121412
linkType: hard
14131413

1414-
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.7.0":
1414+
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
14151415
version: 4.7.0
14161416
resolution: "@eslint-community/eslint-utils@npm:4.7.0"
14171417
dependencies:
@@ -1462,16 +1462,16 @@ __metadata:
14621462
"@babel/preset-env": "npm:^7.27.2"
14631463
"@babel/preset-typescript": "npm:^7.27.1"
14641464
"@types/jest": "npm:^29.5.14"
1465-
"@typescript-eslint/eslint-plugin": "npm:^8.32.1"
1466-
"@typescript-eslint/parser": "npm:^8.32.1"
1465+
"@typescript-eslint/eslint-plugin": "npm:^7.18.0"
1466+
"@typescript-eslint/parser": "npm:^7.18.0"
14671467
babel-jest: "npm:^29.7.0"
14681468
babel-loader: "npm:^10.0.0"
14691469
commitizen: "npm:^4.3.1"
14701470
concurrently: "npm:^9.1.2"
14711471
core-js: "npm:3.42.0"
14721472
cz-conventional-changelog: "npm:3.3.0"
14731473
eslint: "npm:^8.57.1"
1474-
eslint-config-prettier: "npm:^10.1.5"
1474+
eslint-config-prettier: "npm:^7.2.0"
14751475
eslint-plugin-import: "npm:^2.31.0"
14761476
eslint-plugin-prefer-arrow: "npm:^1.2.3"
14771477
husky: "npm:^9.1.7"
@@ -2645,115 +2645,121 @@ __metadata:
26452645
languageName: node
26462646
linkType: hard
26472647

2648-
"@typescript-eslint/eslint-plugin@npm:^8.32.1":
2649-
version: 8.32.1
2650-
resolution: "@typescript-eslint/eslint-plugin@npm:8.32.1"
2648+
"@typescript-eslint/eslint-plugin@npm:^7.18.0":
2649+
version: 7.18.0
2650+
resolution: "@typescript-eslint/eslint-plugin@npm:7.18.0"
26512651
dependencies:
26522652
"@eslint-community/regexpp": "npm:^4.10.0"
2653-
"@typescript-eslint/scope-manager": "npm:8.32.1"
2654-
"@typescript-eslint/type-utils": "npm:8.32.1"
2655-
"@typescript-eslint/utils": "npm:8.32.1"
2656-
"@typescript-eslint/visitor-keys": "npm:8.32.1"
2653+
"@typescript-eslint/scope-manager": "npm:7.18.0"
2654+
"@typescript-eslint/type-utils": "npm:7.18.0"
2655+
"@typescript-eslint/utils": "npm:7.18.0"
2656+
"@typescript-eslint/visitor-keys": "npm:7.18.0"
26572657
graphemer: "npm:^1.4.0"
2658-
ignore: "npm:^7.0.0"
2658+
ignore: "npm:^5.3.1"
26592659
natural-compare: "npm:^1.4.0"
2660-
ts-api-utils: "npm:^2.1.0"
2660+
ts-api-utils: "npm:^1.3.0"
26612661
peerDependencies:
2662-
"@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
2663-
eslint: ^8.57.0 || ^9.0.0
2664-
typescript: ">=4.8.4 <5.9.0"
2665-
checksum: 10c0/29dbafc1f02e1167e6d1e92908de6bf7df1cc1fc9ae1de3f4d4abf5d2b537be16b173bcd05770270529eb2fd17a3ac63c2f40d308f7fbbf6d6f286ba564afd64
2662+
"@typescript-eslint/parser": ^7.0.0
2663+
eslint: ^8.56.0
2664+
peerDependenciesMeta:
2665+
typescript:
2666+
optional: true
2667+
checksum: 10c0/2b37948fa1b0dab77138909dabef242a4d49ab93e4019d4ef930626f0a7d96b03e696cd027fa0087881c20e73be7be77c942606b4a76fa599e6b37f6985304c3
26662668
languageName: node
26672669
linkType: hard
26682670

2669-
"@typescript-eslint/parser@npm:^8.32.1":
2670-
version: 8.32.1
2671-
resolution: "@typescript-eslint/parser@npm:8.32.1"
2671+
"@typescript-eslint/parser@npm:^7.18.0":
2672+
version: 7.18.0
2673+
resolution: "@typescript-eslint/parser@npm:7.18.0"
26722674
dependencies:
2673-
"@typescript-eslint/scope-manager": "npm:8.32.1"
2674-
"@typescript-eslint/types": "npm:8.32.1"
2675-
"@typescript-eslint/typescript-estree": "npm:8.32.1"
2676-
"@typescript-eslint/visitor-keys": "npm:8.32.1"
2675+
"@typescript-eslint/scope-manager": "npm:7.18.0"
2676+
"@typescript-eslint/types": "npm:7.18.0"
2677+
"@typescript-eslint/typescript-estree": "npm:7.18.0"
2678+
"@typescript-eslint/visitor-keys": "npm:7.18.0"
26772679
debug: "npm:^4.3.4"
26782680
peerDependencies:
2679-
eslint: ^8.57.0 || ^9.0.0
2680-
typescript: ">=4.8.4 <5.9.0"
2681-
checksum: 10c0/01095f5b6e0a2e0631623be3f44be0f2960ceb24de33b64cb790e24a1468018d2b4d6874d1fa08a4928c2a02f208dd66cbc49735c7e8b54d564e420daabf84d1
2681+
eslint: ^8.56.0
2682+
peerDependenciesMeta:
2683+
typescript:
2684+
optional: true
2685+
checksum: 10c0/370e73fca4278091bc1b657f85e7d74cd52b24257ea20c927a8e17546107ce04fbf313fec99aed0cc2a145ddbae1d3b12e9cc2c1320117636dc1281bcfd08059
26822686
languageName: node
26832687
linkType: hard
26842688

2685-
"@typescript-eslint/scope-manager@npm:8.32.1":
2686-
version: 8.32.1
2687-
resolution: "@typescript-eslint/scope-manager@npm:8.32.1"
2689+
"@typescript-eslint/scope-manager@npm:7.18.0":
2690+
version: 7.18.0
2691+
resolution: "@typescript-eslint/scope-manager@npm:7.18.0"
26882692
dependencies:
2689-
"@typescript-eslint/types": "npm:8.32.1"
2690-
"@typescript-eslint/visitor-keys": "npm:8.32.1"
2691-
checksum: 10c0/d2cb1f7736388972137d6e510b2beae4bac033fcab274e04de90ebba3ce466c71fe47f1795357e032e4a6c8b2162016b51b58210916c37212242c82d35352e9f
2693+
"@typescript-eslint/types": "npm:7.18.0"
2694+
"@typescript-eslint/visitor-keys": "npm:7.18.0"
2695+
checksum: 10c0/038cd58c2271de146b3a594afe2c99290034033326d57ff1f902976022c8b0138ffd3cb893ae439ae41003b5e4bcc00cabf6b244ce40e8668f9412cc96d97b8e
26922696
languageName: node
26932697
linkType: hard
26942698

2695-
"@typescript-eslint/type-utils@npm:8.32.1":
2696-
version: 8.32.1
2697-
resolution: "@typescript-eslint/type-utils@npm:8.32.1"
2699+
"@typescript-eslint/type-utils@npm:7.18.0":
2700+
version: 7.18.0
2701+
resolution: "@typescript-eslint/type-utils@npm:7.18.0"
26982702
dependencies:
2699-
"@typescript-eslint/typescript-estree": "npm:8.32.1"
2700-
"@typescript-eslint/utils": "npm:8.32.1"
2703+
"@typescript-eslint/typescript-estree": "npm:7.18.0"
2704+
"@typescript-eslint/utils": "npm:7.18.0"
27012705
debug: "npm:^4.3.4"
2702-
ts-api-utils: "npm:^2.1.0"
2706+
ts-api-utils: "npm:^1.3.0"
27032707
peerDependencies:
2704-
eslint: ^8.57.0 || ^9.0.0
2705-
typescript: ">=4.8.4 <5.9.0"
2706-
checksum: 10c0/f10186340ce194681804d9a57feb6d8d6c3adbd059c70df58f4656b0d9efd412fb0c2d80c182f9db83bad1a301754e0c24fe26f3354bef3a1795ab9c835cb763
2708+
eslint: ^8.56.0
2709+
peerDependenciesMeta:
2710+
typescript:
2711+
optional: true
2712+
checksum: 10c0/ad92a38007be620f3f7036f10e234abdc2fdc518787b5a7227e55fd12896dacf56e8b34578723fbf9bea8128df2510ba8eb6739439a3879eda9519476d5783fd
27072713
languageName: node
27082714
linkType: hard
27092715

2710-
"@typescript-eslint/types@npm:8.32.1":
2711-
version: 8.32.1
2712-
resolution: "@typescript-eslint/types@npm:8.32.1"
2713-
checksum: 10c0/86f59b29c12e7e8abe45a1659b6fae5e7b0cfaf09ab86dd596ed9d468aa61082bbccd509d25f769b197fbfdf872bbef0b323a2ded6ceaca351f7c679f1ba3bd3
2716+
"@typescript-eslint/types@npm:7.18.0":
2717+
version: 7.18.0
2718+
resolution: "@typescript-eslint/types@npm:7.18.0"
2719+
checksum: 10c0/eb7371ac55ca77db8e59ba0310b41a74523f17e06f485a0ef819491bc3dd8909bb930120ff7d30aaf54e888167e0005aa1337011f3663dc90fb19203ce478054
27142720
languageName: node
27152721
linkType: hard
27162722

2717-
"@typescript-eslint/typescript-estree@npm:8.32.1":
2718-
version: 8.32.1
2719-
resolution: "@typescript-eslint/typescript-estree@npm:8.32.1"
2723+
"@typescript-eslint/typescript-estree@npm:7.18.0":
2724+
version: 7.18.0
2725+
resolution: "@typescript-eslint/typescript-estree@npm:7.18.0"
27202726
dependencies:
2721-
"@typescript-eslint/types": "npm:8.32.1"
2722-
"@typescript-eslint/visitor-keys": "npm:8.32.1"
2727+
"@typescript-eslint/types": "npm:7.18.0"
2728+
"@typescript-eslint/visitor-keys": "npm:7.18.0"
27232729
debug: "npm:^4.3.4"
2724-
fast-glob: "npm:^3.3.2"
2730+
globby: "npm:^11.1.0"
27252731
is-glob: "npm:^4.0.3"
27262732
minimatch: "npm:^9.0.4"
27272733
semver: "npm:^7.6.0"
2728-
ts-api-utils: "npm:^2.1.0"
2729-
peerDependencies:
2730-
typescript: ">=4.8.4 <5.9.0"
2731-
checksum: 10c0/b5ae0d91ef1b46c9f3852741e26b7a14c28bb58ee8a283b9530ac484332ca58a7216b9d22eda23c5449b5fd69c6e4601ef3ebbd68e746816ae78269036c08cda
2734+
ts-api-utils: "npm:^1.3.0"
2735+
peerDependenciesMeta:
2736+
typescript:
2737+
optional: true
2738+
checksum: 10c0/0c7f109a2e460ec8a1524339479cf78ff17814d23c83aa5112c77fb345e87b3642616291908dcddea1e671da63686403dfb712e4a4435104f92abdfddf9aba81
27322739
languageName: node
27332740
linkType: hard
27342741

2735-
"@typescript-eslint/utils@npm:8.32.1":
2736-
version: 8.32.1
2737-
resolution: "@typescript-eslint/utils@npm:8.32.1"
2742+
"@typescript-eslint/utils@npm:7.18.0":
2743+
version: 7.18.0
2744+
resolution: "@typescript-eslint/utils@npm:7.18.0"
27382745
dependencies:
2739-
"@eslint-community/eslint-utils": "npm:^4.7.0"
2740-
"@typescript-eslint/scope-manager": "npm:8.32.1"
2741-
"@typescript-eslint/types": "npm:8.32.1"
2742-
"@typescript-eslint/typescript-estree": "npm:8.32.1"
2746+
"@eslint-community/eslint-utils": "npm:^4.4.0"
2747+
"@typescript-eslint/scope-manager": "npm:7.18.0"
2748+
"@typescript-eslint/types": "npm:7.18.0"
2749+
"@typescript-eslint/typescript-estree": "npm:7.18.0"
27432750
peerDependencies:
2744-
eslint: ^8.57.0 || ^9.0.0
2745-
typescript: ">=4.8.4 <5.9.0"
2746-
checksum: 10c0/a2b90c0417cd3a33c6e22f9cc28c356f251bb8928ef1d25e057feda007d522d281bdc37a9a0d05b70312f00a7b3f350ca06e724867025ea85bba5a4c766732e7
2751+
eslint: ^8.56.0
2752+
checksum: 10c0/a25a6d50eb45c514469a01ff01f215115a4725fb18401055a847ddf20d1b681409c4027f349033a95c4ff7138d28c3b0a70253dfe8262eb732df4b87c547bd1e
27472753
languageName: node
27482754
linkType: hard
27492755

2750-
"@typescript-eslint/visitor-keys@npm:8.32.1":
2751-
version: 8.32.1
2752-
resolution: "@typescript-eslint/visitor-keys@npm:8.32.1"
2756+
"@typescript-eslint/visitor-keys@npm:7.18.0":
2757+
version: 7.18.0
2758+
resolution: "@typescript-eslint/visitor-keys@npm:7.18.0"
27532759
dependencies:
2754-
"@typescript-eslint/types": "npm:8.32.1"
2755-
eslint-visitor-keys: "npm:^4.2.0"
2756-
checksum: 10c0/9c05053dfd048f681eb96e09ceefa8841a617b8b5950eea05e0844b38fe3510a284eb936324caa899c3ceb4bc23efe56ac01437fab378ac1beeb1c6c00404978
2760+
"@typescript-eslint/types": "npm:7.18.0"
2761+
eslint-visitor-keys: "npm:^3.4.3"
2762+
checksum: 10c0/538b645f8ff1d9debf264865c69a317074eaff0255e63d7407046176b0f6a6beba34a6c51d511f12444bae12a98c69891eb6f403c9f54c6c2e2849d1c1cb73c0
27572763
languageName: node
27582764
linkType: hard
27592765

@@ -3221,6 +3227,13 @@ __metadata:
32213227
languageName: node
32223228
linkType: hard
32233229

3230+
"array-union@npm:^2.1.0":
3231+
version: 2.1.0
3232+
resolution: "array-union@npm:2.1.0"
3233+
checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962
3234+
languageName: node
3235+
linkType: hard
3236+
32243237
"array.prototype.findlastindex@npm:^1.2.5":
32253238
version: 1.2.6
32263239
resolution: "array.prototype.findlastindex@npm:1.2.6"
@@ -4737,14 +4750,14 @@ __metadata:
47374750
languageName: node
47384751
linkType: hard
47394752

4740-
"eslint-config-prettier@npm:^10.1.5":
4741-
version: 10.1.5
4742-
resolution: "eslint-config-prettier@npm:10.1.5"
4753+
"eslint-config-prettier@npm:^7.2.0":
4754+
version: 7.2.0
4755+
resolution: "eslint-config-prettier@npm:7.2.0"
47434756
peerDependencies:
47444757
eslint: ">=7.0.0"
47454758
bin:
47464759
eslint-config-prettier: bin/cli.js
4747-
checksum: 10c0/5486255428e4577e8064b40f27db299faf7312b8e43d7b4bc913a6426e6c0f5950cd519cad81ae24e9aecb4002c502bc665c02e3b52efde57af2debcf27dd6e0
4760+
checksum: 10c0/6f92bdf934c0c281e5799f588dc4a103017215371f924ddbafc1d5d2bd9af73849c77f7860798fbc27ee4afed9092f541bace6c4a85de513888829cd8c7e4521
47484761
languageName: node
47494762
linkType: hard
47504763

@@ -4836,13 +4849,6 @@ __metadata:
48364849
languageName: node
48374850
linkType: hard
48384851

4839-
"eslint-visitor-keys@npm:^4.2.0":
4840-
version: 4.2.0
4841-
resolution: "eslint-visitor-keys@npm:4.2.0"
4842-
checksum: 10c0/2ed81c663b147ca6f578312919483eb040295bbab759e5a371953456c636c5b49a559883e2677112453728d66293c0a4c90ab11cab3428cf02a0236d2e738269
4843-
languageName: node
4844-
linkType: hard
4845-
48464852
"eslint@npm:^8.57.1":
48474853
version: 8.57.1
48484854
resolution: "eslint@npm:8.57.1"
@@ -5073,7 +5079,7 @@ __metadata:
50735079
languageName: node
50745080
linkType: hard
50755081

5076-
"fast-glob@npm:^3.3.2, fast-glob@npm:^3.3.3":
5082+
"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.3":
50775083
version: 3.3.3
50785084
resolution: "fast-glob@npm:3.3.3"
50795085
dependencies:
@@ -5673,6 +5679,20 @@ __metadata:
56735679
languageName: node
56745680
linkType: hard
56755681

5682+
"globby@npm:^11.1.0":
5683+
version: 11.1.0
5684+
resolution: "globby@npm:11.1.0"
5685+
dependencies:
5686+
array-union: "npm:^2.1.0"
5687+
dir-glob: "npm:^3.0.1"
5688+
fast-glob: "npm:^3.2.9"
5689+
ignore: "npm:^5.2.0"
5690+
merge2: "npm:^1.4.1"
5691+
slash: "npm:^3.0.0"
5692+
checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189
5693+
languageName: node
5694+
linkType: hard
5695+
56765696
"globby@npm:^14.0.0":
56775697
version: 14.1.0
56785698
resolution: "globby@npm:14.1.0"
@@ -5945,14 +5965,14 @@ __metadata:
59455965
languageName: node
59465966
linkType: hard
59475967

5948-
"ignore@npm:^5.2.0":
5968+
"ignore@npm:^5.2.0, ignore@npm:^5.3.1":
59495969
version: 5.3.2
59505970
resolution: "ignore@npm:5.3.2"
59515971
checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337
59525972
languageName: node
59535973
linkType: hard
59545974

5955-
"ignore@npm:^7.0.0, ignore@npm:^7.0.3":
5975+
"ignore@npm:^7.0.3":
59565976
version: 7.0.4
59575977
resolution: "ignore@npm:7.0.4"
59585978
checksum: 10c0/90e1f69ce352b9555caecd9cbfd07abe7626d312a6f90efbbb52c7edca6ea8df065d66303863b30154ab1502afb2da8bc59d5b04e1719a52ef75bbf675c488eb
@@ -7736,7 +7756,7 @@ __metadata:
77367756
languageName: node
77377757
linkType: hard
77387758

7739-
"merge2@npm:^1.3.0":
7759+
"merge2@npm:^1.3.0, merge2@npm:^1.4.1":
77407760
version: 1.4.1
77417761
resolution: "merge2@npm:1.4.1"
77427762
checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb
@@ -10365,12 +10385,12 @@ __metadata:
1036510385
languageName: node
1036610386
linkType: hard
1036710387

10368-
"ts-api-utils@npm:^2.1.0":
10369-
version: 2.1.0
10370-
resolution: "ts-api-utils@npm:2.1.0"
10388+
"ts-api-utils@npm:^1.3.0":
10389+
version: 1.4.3
10390+
resolution: "ts-api-utils@npm:1.4.3"
1037110391
peerDependencies:
10372-
typescript: ">=4.8.4"
10373-
checksum: 10c0/9806a38adea2db0f6aa217ccc6bc9c391ddba338a9fe3080676d0d50ed806d305bb90e8cef0276e793d28c8a929f400abb184ddd7ff83a416959c0f4d2ce754f
10392+
typescript: ">=4.2.0"
10393+
checksum: 10c0/e65dc6e7e8141140c23e1dc94984bf995d4f6801919c71d6dc27cf0cd51b100a91ffcfe5217626193e5bea9d46831e8586febdc7e172df3f1091a7384299e23a
1037410394
languageName: node
1037510395
linkType: hard
1037610396

0 commit comments

Comments
 (0)