Skip to content

Commit

Permalink
increase filesize.
Browse files Browse the repository at this point in the history
set all non-automated fixes to warn level

Signed-off-by: Adam Setch <[email protected]>
  • Loading branch information
setchy committed Apr 14, 2024
1 parent 5e761d3 commit 5e42eb9
Show file tree
Hide file tree
Showing 4 changed files with 352 additions and 1,047 deletions.
28 changes: 27 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,30 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true
"recommended": true,
"complexity": {
"noBannedTypes": "warn",
"noForEach": "warn",
"useLiteralKeys": "warn",
"useOptionalChain": "warn"
},
"correctness": {
"noUnnecessaryContinue": "warn"
},
"performance": {
"noDelete": "warn"
},
"style": {
"noParameterAssign": "warn",
"noUnusedTemplateLiteral": "warn",
"noUselessElse": "warn",
"useDefaultParameterLast": "warn",
"useTemplate": "warn"
},
"suspicious": {
"noDoubleEquals": "warn",
"noExplicitAny": "warn"
}
}
},
"vcs": {
Expand All @@ -18,5 +41,8 @@
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"files": {
"maxSize": 5242880
}
}
Loading

0 comments on commit 5e42eb9

Please sign in to comment.