55 lines
1.0 KiB
JSON
55 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"ignore": ["node_modules", "build"]
|
|
},
|
|
"vcs": {
|
|
"clientKind": "git",
|
|
"defaultBranch": "main",
|
|
"enabled": false,
|
|
"root": ".",
|
|
"useIgnoreFile": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noConfusingVoidType": "off"
|
|
},
|
|
"security": {
|
|
"noDangerouslySetInnerHtml": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineEnding": "lf"
|
|
},
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"enabled": true,
|
|
"quoteStyle": "double",
|
|
"jsxQuoteStyle": "double",
|
|
"trailingCommas": "all",
|
|
"semicolons": "always",
|
|
"arrowParentheses": "always"
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"include": ["**/*.{ts,tsx}"],
|
|
"javascript": {
|
|
"globals": []
|
|
}
|
|
}
|
|
]
|
|
}
|