Skip to content

Commit

Permalink
remove test suite (no futher test required)
Browse files Browse the repository at this point in the history
  • Loading branch information
hUwUtao committed Nov 27, 2024
1 parent dc4d49a commit d0711aa
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 78 deletions.
47 changes: 25 additions & 22 deletions biome.jsonc
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.1/schema.json",
"files": {
"include": ["src/**/*"]
},
"organizeImports": {
"enabled": false
},
"linter": {
"enabled": true,
"ignore": ["src/archive/**/*"],
"rules": {
"recommended": true
}
},
"$schema": "https://biomejs.dev/schemas/1.8.1/schema.json",
"files": {
"include": ["src/**/*"]
},
"organizeImports": {
"enabled": false
},
"linter": {
"enabled": true,
"ignore": ["src/graphql/**/*"],
"rules": {
"recommended": true
}
},
"formatter": {
"indentWidth": 2,
"indentStyle": "space",
"lineEnding": "crlf",
"ignore": ["src/graphql/**/*"]
},
"javascript": {
"formatter": {
"indentWidth": 4,
"indentStyle": "space",
"lineEnding": "crlf"
},
"javascript": {
"formatter": {
"semicolons": "asNeeded"
}
"semicolons": "asNeeded",
"trailingCommas": "none",
"quoteStyle": "single"
}
}
}
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"scripts": {
"fmt": "biome check --fix",
"test": "biome lint && vitest --run --typecheck",
"test": "biome lint",
"build": "tsc && esbuild src/index.ts --bundle --sourcemap --target=es6 --platform=neutral --minify --outfile=dist/index.js",
"schema": "gql-gen --config codegen.ts"
},
Expand All @@ -24,10 +24,11 @@
"esbuild": "^0.24.0",
"graphql-codegen-typescript-client": "0.18.2",
"graphql-codegen-typescript-common": "0.18.2",
"typescript": "^5.4.5"
"typescript": "^5.7.2"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"graphql-request": "^7.1.2"
}
}

Loading

0 comments on commit d0711aa

Please sign in to comment.