all repos — kitten @ 7aa6f6aa2d5341d6a419e456126dd7bbdb9993af

fmt
vi did:web:vt3e.cat
Fri, 12 Jun 2026 04:28:16 +0100
commit

7aa6f6aa2d5341d6a419e456126dd7bbdb9993af

parent

76d8fb0bdcaf8f5f8404dd930691e52756e68f01

2 files changed, 92 insertions(+), 92 deletions(-)

jump to
M .oxlintrc.json.oxlintrc.json

@@ -1,15 +1,15 @@

{ - "$schema": "./node_modules/oxlint/configuration_schema.json", - "plugins": [ - "typescript", - "unicorn", - "oxc" - ], - "categories": { - "correctness": "error" - }, - "rules": {}, - "env": { - "builtin": true - } -}+ "$schema": "./node_modules/oxlint/configuration_schema.json", + "plugins": ["typescript", "unicorn", "oxc"], + "categories": { + "correctness": "error" + }, + "rules": {}, + "env": { + "builtin": true + }, + "options": { + "typeAware": true, + "typeCheck": true + } +}
M .zed/settings.json.zed/settings.json

@@ -1,80 +1,80 @@

{ - "lsp": { - "oxlint": { - "initialization_options": { - "settings": { - "configPath": null, - "run": "onType", - "disableNestedConfig": false, - "fixKind": "safe_fix", - "unusedDisableDirectives": "deny", - }, - }, - }, - "oxfmt": { - "initialization_options": { - "settings": { - "fmt.configPath": null, - "run": "onSave", - }, - }, - }, - }, - "languages": { - "JavaScript": { - "format_on_save": "on", - "prettier": { - "allowed": false, - }, - "formatter": [ - { - "language_server": { - "name": "oxfmt", - }, - }, - { - "code_action": "source.fixAll.oxc", - }, - ], - }, - "JSON": { - "format_on_save": "on", - "prettier": { - "allowed": false, - }, - "formatter": [ - { - "language_server": { - "name": "oxfmt", - }, - }, - ], - }, - "Markdown": { - "format_on_save": "on", - "prettier": { - "allowed": false, - }, - "formatter": [ - { - "language_server": { - "name": "oxfmt", - }, - }, - ], - }, - "TypeScript": { - "format_on_save": "on", - "prettier": { - "allowed": false, - }, - "formatter": [ - { - "language_server": { - "name": "oxfmt", - }, - }, - ], - }, - }, + "lsp": { + "oxlint": { + "initialization_options": { + "settings": { + "configPath": null, + "run": "onType", + "disableNestedConfig": false, + "fixKind": "safe_fix", + "unusedDisableDirectives": "deny" + } + } + }, + "oxfmt": { + "initialization_options": { + "settings": { + "fmt.configPath": null, + "run": "onSave" + } + } + } + }, + "languages": { + "JavaScript": { + "format_on_save": "on", + "prettier": { + "allowed": false + }, + "formatter": [ + { + "language_server": { + "name": "oxfmt" + } + }, + { + "code_action": "source.fixAll.oxc" + } + ] + }, + "JSON": { + "format_on_save": "on", + "prettier": { + "allowed": false + }, + "formatter": [ + { + "language_server": { + "name": "oxfmt" + } + } + ] + }, + "Markdown": { + "format_on_save": "on", + "prettier": { + "allowed": false + }, + "formatter": [ + { + "language_server": { + "name": "oxfmt" + } + } + ] + }, + "TypeScript": { + "format_on_save": "on", + "prettier": { + "allowed": false + }, + "formatter": [ + { + "language_server": { + "name": "oxfmt" + } + } + ] + } + } }