Skip to content

Commit 2f3f2ae

Browse files
committedMar 21, 2024·
Upgrade node modules
1 parent af647d3 commit 2f3f2ae

File tree

208 files changed

+2498
-1705
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+2498
-1705
lines changed
 

‎.eslintrc.js

+4
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,13 @@ module.exports = {
6666
'@typescript-eslint/consistent-type-assertions': 0,
6767
'@typescript-eslint/consistent-type-definitions': 0,
6868
'@typescript-eslint/no-empty-interface': 0,
69+
'@typescript-eslint/ban-ts-comment': 0,
6970

7071
// eslint-plugin-import
7172
'import/no-extraneous-dependencies': 0,
73+
74+
// sonar
75+
'sonar/no-try-promise': 0,
7276
},
7377
},
7478
],

‎biome.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"enabled": false
55
},
66
"organizeImports": {
7-
"enabled": false
7+
"enabled": true
88
},
99
"linter": {
1010
"ignore": ["build", "coverage", "node_modules", "recipes", "*.json"],
@@ -23,7 +23,9 @@
2323
"suspicious": {
2424
"noEmptyInterface": "off",
2525
"noExplicitAny": "off",
26-
"noArrayIndexKey": "off"
26+
"noImplicitAnyLet": "off",
27+
"noArrayIndexKey": "off",
28+
"noThenProperty": "off"
2729
},
2830
"performance": {
2931
"noDelete": "off"

0 commit comments

Comments
 (0)
Please sign in to comment.