Created
September 13, 2025 05:33
-
-
Save jon-hotaisle/c0ce411891d956e76b1750f27b5769e7 to your computer and use it in GitHub Desktop.
biome.jsonc for use with ultracite.ai
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
Show hidden characters
| { | |
| "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | |
| "extends": ["ultracite"], | |
| "formatter": { | |
| "indentStyle": "tab", | |
| "indentWidth": 4, | |
| "lineWidth": 80 | |
| }, | |
| "javascript": { | |
| "formatter": { | |
| "quoteStyle": "single" | |
| } | |
| }, | |
| "json": { | |
| "formatter": { | |
| "indentStyle": "tab", | |
| "indentWidth": 4 | |
| } | |
| }, | |
| "linter": { | |
| "rules": { | |
| "performance": { | |
| "noImgElement": "off" | |
| }, | |
| "nursery": { | |
| "useImageSize": "off" | |
| }, | |
| "style": { | |
| "noMagicNumbers": "off" | |
| }, | |
| "a11y": { | |
| "noNoninteractiveElementInteractions": "off", | |
| "useKeyWithClickEvents": "off" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment