mirror of
https://github.com/lone-cloud/prism
synced 2026-06-03 08:43:10 -07:00
54 lines
971 B
JSON
54 lines
971 B
JSON
{
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true,
|
|
"defaultBranch": "main"
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": true
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 100
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"complexity": {
|
|
"useArrowFunction": "warn"
|
|
},
|
|
"style": {
|
|
"useShorthandFunctionType": "warn"
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"trailingCommas": "all",
|
|
"semicolons": "always"
|
|
}
|
|
},
|
|
"html": {
|
|
"parser": {
|
|
"interpolation": true
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"includes": ["scripts/**/*"],
|
|
"linter": {
|
|
"rules": {
|
|
"suspicious": {
|
|
"noConsole": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|