Skip to content

Commit c99c155

Browse files
authored
Merge pull request #126 from githubnext/copilot/merge-build-tsb-pandas-typescript-prs
Merge all 22 build-tsb-pandas-typescript-migration PRs into one
2 parents 5b3c1da + 0d7cd98 commit c99c155

46 files changed

Lines changed: 11324 additions & 8 deletions

Some content is hidden

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

biome.json

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,28 +27,43 @@
2727
"rules": {
2828
"recommended": true,
2929
"complexity": {
30-
"all": true
30+
"all": true,
31+
"noExcessiveCognitiveComplexity": "warn",
32+
"noForEach": "warn",
33+
"useLiteralKeys": "warn",
34+
"noUselessSwitchCase": "warn"
3135
},
3236
"correctness": {
33-
"all": true
37+
"all": true,
38+
"noNodejsModules": "warn",
39+
"noUnusedVariables": "warn"
3440
},
3541
"nursery": {
3642
"all": true
3743
},
3844
"performance": {
3945
"all": true,
40-
"noBarrelFile": "off"
46+
"noBarrelFile": "off",
47+
"useTopLevelRegex": "warn"
4148
},
4249
"security": {
4350
"all": true
4451
},
4552
"style": {
4653
"all": true,
4754
"noDefaultExport": "off",
48-
"useNamingConvention": "off"
55+
"useNamingConvention": "off",
56+
"noNonNullAssertion": "warn",
57+
"noNamespaceImport": "warn",
58+
"noParameterProperties": "warn",
59+
"useDefaultSwitchClause": "warn",
60+
"useCollapsedElseIf": "warn"
4961
},
5062
"suspicious": {
51-
"all": true
63+
"all": true,
64+
"noAssignInExpressions": "warn",
65+
"noMisplacedAssertion": "warn",
66+
"noApproximativeNumericConstant": "warn"
5267
}
5368
}
5469
},

0 commit comments

Comments
 (0)