Last active
January 7, 2025 12:42
-
-
Save yannbertrand/076cd54d6d13b044fa79d79a0a9b7300 to your computer and use it in GitHub Desktop.
Biome base local config (in `~/Developer`)
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": "https://biomejs.dev/schemas/1.9.4/schema.json", | |
"formatter": { | |
"lineWidth": 120, | |
"indentStyle": "space", | |
"formatWithErrors": true, | |
"useEditorconfig": true | |
}, | |
"javascript": { | |
"formatter": { | |
"quoteStyle": "single" | |
} | |
}, | |
"overrides": [ | |
{ | |
"include": [ | |
"1024pix/pix/api/**/*.js", | |
"1024pix/**/*_test.js", | |
"1024pix/**/*-test.js", | |
"1024pix/**/*.test.js", | |
"1024pix/**/*_test.gjs" | |
], | |
"linter": { | |
"rules": { | |
"complexity": { | |
"useArrowFunction": "off" | |
} | |
} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment