mirror of
https://github.com/HuLaSpark/HuLa.git
synced 2026-09-21 12:43:20 +08:00
* feat(common): ✨ mobile webrtc * fix(common): 🐛 webrtc hangup * chore: 🔨 merge master's content * fix(view): 🐛 notice effect new processor * feat(mobile): ✨ add Group Chat Member Page * fix(mobile): 🐛 fix the scan code page style * fix(common): 🐛 mobile rtc call * fix(mobile): 🐛 "Fix friend profile display and group chat member list height issues * style(call): 💄 beautify mobile audio and video pages * feat(common): ✨ mobile rtc call little cell * feat(common): ✨ add mobile call reminder * fix(view): 🐛 adjust the order of read notifications --------- Co-authored-by: wanwanruwoxin <254693270@qq.com> Co-authored-by: 乾乾 <1046762075@qq.com> Co-authored-by: 卡仔 <1271013637@qq.com>
117 lines
2.8 KiB
JSON
Vendored
117 lines
2.8 KiB
JSON
Vendored
{
|
|
"$schema": "https://biomejs.dev/schemas/latest/schema.json",
|
|
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"includes": [
|
|
"**/*.{js,jsx,ts,tsx,vue,json}",
|
|
"!.*",
|
|
"!public/*",
|
|
"!src/typings/*.d.ts",
|
|
"!src-tauri/*",
|
|
"!node_modules/*",
|
|
"!tauri-plugin-hula/*",
|
|
"!dist/*",
|
|
"!src-tauri/gen/schemas"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"formatWithErrors": false,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineEnding": "lf",
|
|
"lineWidth": 120,
|
|
"attributePosition": "auto",
|
|
"bracketSameLine": true,
|
|
"bracketSpacing": true,
|
|
"expand": "auto",
|
|
"useEditorconfig": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"a11y": {
|
|
"noStaticElementInteractions": "off",
|
|
"useKeyWithClickEvents": "off",
|
|
"noSvgWithoutTitle": "off",
|
|
"useAltText": "off"
|
|
},
|
|
"complexity": {
|
|
"useOptionalChain": "off",
|
|
"useLiteralKeys": "off",
|
|
"useDateNow": "off",
|
|
"noStaticOnlyClass": "off"
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": "warn",
|
|
"noUnusedImports": "warn"
|
|
},
|
|
"style": {
|
|
"useNodejsImportProtocol": "off",
|
|
"noNonNullAssertion": "off",
|
|
"useNamingConvention": "off",
|
|
"useTemplate": "off",
|
|
"useImportType": "off"
|
|
},
|
|
"suspicious": {
|
|
"noGlobalIsNan": "off",
|
|
"noExplicitAny": "off",
|
|
"noAssignInExpressions": "off",
|
|
"noImplicitAnyLet": "off",
|
|
"noConfusingVoidType": "off",
|
|
"noArrayIndexKey": "off",
|
|
"useIterableCallbackReturn": "off"
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"jsxQuoteStyle": "double",
|
|
"quoteProperties": "asNeeded",
|
|
"trailingCommas": "none",
|
|
"semicolons": "asNeeded",
|
|
"arrowParentheses": "always",
|
|
"bracketSameLine": true,
|
|
"quoteStyle": "single",
|
|
"attributePosition": "auto",
|
|
"bracketSpacing": true
|
|
}
|
|
},
|
|
"json": {
|
|
"formatter": {
|
|
"trailingCommas": "none"
|
|
}
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": { "source": { "organizeImports": "off" } }
|
|
},
|
|
"overrides": [
|
|
{
|
|
"includes": ["**/*.vue"],
|
|
"linter": {
|
|
"rules": {
|
|
"correctness": {
|
|
"noUnusedVariables": "off",
|
|
"noUnusedImports": "off"
|
|
},
|
|
"style": {
|
|
"useNamingConvention": "off",
|
|
"useTemplate": "off"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noAssignInExpressions": "off",
|
|
"noImplicitAnyLet": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true
|
|
}
|
|
}
|
|
]
|
|
}
|