Skip to content

Commit

Permalink
ci: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wellwelwel committed Aug 22, 2024
1 parent 029f692 commit d74c65c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.2/schema.json",
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"files": {
"include": ["**/**"],
"ignore": ["node_modules", "lib"]
"ignore": ["node_modules", "lib", "browser"]
},
"linter": {
"enabled": true,
Expand All @@ -24,7 +24,11 @@
"useImportExtensions": "error"
},
"performance": {
"all": true
"all": true,
"noAccumulatingSpread": "error",
"noBarrelFile": "error",
"noDelete": "error",
"noReExportAll": "error"
},
"security": {
"all": true
Expand All @@ -48,6 +52,9 @@
"include": ["test", "tools"],
"linter": {
"rules": {
"correctness": {
"noNodejsModules": "off"
},
"nursery": {
"useTopLevelRegex": "off"
}
Expand Down

0 comments on commit d74c65c

Please sign in to comment.