Skip to content

Instantly share code, notes, and snippets.

@rerrahkr
Created July 10, 2025 13:49
Show Gist options
  • Select an option

  • Save rerrahkr/1d5d4c98aec97330a3f8e6824fd459c5 to your computer and use it in GitHub Desktop.

Select an option

Save rerrahkr/1d5d4c98aec97330a3f8e6824fd459c5 to your computer and use it in GitHub Desktop.
Biome設定
{
"$schema": "https://biomejs.dev/schemas/2.1.1/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"includes": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.jsx",
"src/**/*.tsx"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space"
},
"linter": {
"enabled": true,
"rules": {
"style": {
"noDefaultExport": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"trailingCommas": "es5"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment