Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .c8rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"reporter": ["lcov", "text"],
"skip-full": true
}
6 changes: 6 additions & 0 deletions .mocharc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
exit: true
extension: ['ts']
spec: 'tests/**/*.spec.ts'
timeout: 20000
node-option:
- 'import=tsx/esm'
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
"files": {
"ignoreUnknown": true,
"includes": ["tests/**/*.spec.ts", "src/**/*.ts"]
"includes": ["tests/**/*.spec.ts", "src/**/*.ts", "package*.json"]
},
"formatter": {
"enabled": true,
Expand Down
2 changes: 1 addition & 1 deletion lint-staged.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
"prettier --write"
],
"package*.json": [
"prettier --write",
"biome format --write",
"npm -q --no-progress dedupe"
]
}
Loading