remotely-save/biome.json

44 lines
899 B
JSON
Raw Normal View History

2024-05-07 15:48:29 +00:00
{
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"organizeImports": {
"enabled": true
},
2024-05-07 16:20:15 +00:00
"files": {
"ignore": ["main.js"]
},
2024-05-07 15:48:29 +00:00
"formatter": {
"enabled": true,
"formatWithErrors": false,
2024-05-07 16:20:15 +00:00
"ignore": [],
2024-05-07 15:48:29 +00:00
"attributePosition": "auto",
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80
},
"javascript": {
"formatter": {
"arrowParentheses": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"semicolons": "always",
"trailingComma": "es5"
}
},
"linter": {
"enabled": true,
"rules": {
2024-05-07 16:20:15 +00:00
"recommended": true,
"suspicious": {
"noExplicitAny": "off"
},
"style": {
"noUselessElse": "off",
"useNodejsImportProtocol": "off"
}
2024-05-07 15:48:29 +00:00
}
}
}