Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
raix committed Oct 1, 2024
0 parents commit 7e35649
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
12 changes: 12 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
}
}
15 changes: 15 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "biome-repro",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"format": "biome format .",
"lint": "biome lint",
"check": "biome check",
"ci": "biome ci"
},
"devDependencies": {
"@biomejs/biome": "1.9.2"
}
}
7 changes: 7 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* If possible, put your minimal reproduction in this file, but feel free to
* create other files elsewhere in the project if necessary.
*
* Once you have a minimal reproduction, commit it and push it to a public
* GitHub repo.
*/

0 comments on commit 7e35649

Please sign in to comment.