Skip to content

Commit

Permalink
Improve HTTP client and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelGirodon committed Nov 29, 2023
1 parent 073e492 commit afb6254
Show file tree
Hide file tree
Showing 8 changed files with 461 additions and 329 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
test:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.33.0-focal
image: mcr.microsoft.com/playwright:v1.40.1-jammy
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
10 changes: 8 additions & 2 deletions rome.json → biome.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
{
"$schema": "./node_modules/rome/configuration_schema.json",
"$schema": "https://biomejs.dev/schemas/1.3.3/schema.json",
"formatter": {
"enabled": false
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"complexity": {
"noBannedTypes": "warn",
"useLiteralKeys": "off",
"useSimplifiedLogicExpression": "warn"
},
"performance": {
"noDelete": "warn"
},
"style": {
"noNonNullAssertion": "warn"
"noNonNullAssertion": "off"
},
"suspicious": {
"noConfusingVoidType": "warn",
"noExplicitAny": "off",
"noRedeclare": "warn"
}
Expand Down
Loading

0 comments on commit afb6254

Please sign in to comment.