Skip to content

Instantly share code, notes, and snippets.

@aboqasem
Last active March 20, 2024 07:00
Show Gist options
  • Save aboqasem/2b0e2388e4d0723f66110b4581a20019 to your computer and use it in GitHub Desktop.
Save aboqasem/2b0e2388e4d0723f66110b4581a20019 to your computer and use it in GitHub Desktop.
Biome Config
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": {
"enabled": true
},
"vcs": {
"enabled": true,
"root": ".",
"clientKind": "git",
"useIgnoreFile": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"useAwait": "warn"
},
"style": {
"useConsistentArrayType": "warn",
"useImportType": "warn",
"useExportType": "warn",
"noParameterAssign": "off"
}
}
},
"formatter": {
"enabled": true,
"lineWidth": 120
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment