Skip to content

Commit

Permalink
chore: add biome.json file (currently unused)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvantellingen committed Oct 22, 2024
1 parent f0df7da commit d457574
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": ["vendor/*"],
"include": ["src/**/*"]
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noConsoleLog": "error",
"noExplicitAny": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}

0 comments on commit d457574

Please sign in to comment.