mirror of
https://github.com/nyakang/nyaterm.git
synced 2026-09-21 16:01:29 +00:00
- Added support for handling external connection requests via deep links, including SSH and Telnet protocols. - Introduced `ExternalConnectionMatchDialog` for user interaction when multiple connections match an external request. - Enhanced the `App` component to manage external connection states and integrate with the new dialog. - Updated `SavedConnections` and `AppPanelContent` components to support connection handling and UI updates. - Implemented hooks for processing external open requests, improving user experience during external link interactions.
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.2/schema.json",
|
|
"assist": {
|
|
"enabled": true
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineEnding": "crlf",
|
|
"lineWidth": 100
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"trailingCommas": "all"
|
|
}
|
|
},
|
|
"css": {
|
|
"linter": {
|
|
"enabled": false
|
|
},
|
|
"formatter": {
|
|
"enabled": false
|
|
}
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"a11y": {
|
|
"noStaticElementInteractions": "off",
|
|
"useKeyWithClickEvents": "off",
|
|
"useButtonType": "off",
|
|
"noLabelWithoutControl": "off"
|
|
},
|
|
"correctness": {
|
|
"useExhaustiveDependencies": "warn",
|
|
"noUnusedImports": "warn",
|
|
"noUnusedVariables": "warn"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "warn",
|
|
"noArrayIndexKey": "warn",
|
|
"noControlCharactersInRegex": "off"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "off",
|
|
"useNodejsImportProtocol": "off"
|
|
}
|
|
}
|
|
},
|
|
"files": {
|
|
"includes": ["src/**/*.ts", "src/**/*.tsx"]
|
|
}
|
|
}
|