Created
July 10, 2025 13:49
-
-
Save rerrahkr/1d5d4c98aec97330a3f8e6824fd459c5 to your computer and use it in GitHub Desktop.
Biome設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$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