diff --git a/.zed/settings.json b/.zed/settings.json index 6bf9b91a3..d31122b6c 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -3,28 +3,22 @@ // For a full list of overridable settings, and general information on folder-specific settings, // see the documentation: https://docs.zed.dev/configuration/configuring-zed#folder-specific-settings { - "language_overrides": { - "TypeScript": { - "format_on_save": { - "external": { - "command": "node_modules/.bin/prettier", - "arguments": [ - "--stdin-filepath", - "{buffer_path}" - ] - } - } - }, - "TSX": { - "format_on_save": { - "external": { - "command": "node_modules/.bin/prettier", - "arguments": [ - "--stdin-filepath", - "{buffer_path}" - ] - } - } - } - } + "language_overrides": { + "TypeScript": { + "format_on_save": { + "external": { + "command": "node_modules/.bin/prettier", + "arguments": ["--stdin-filepath", "{buffer_path}"] + } + } + }, + "TSX": { + "format_on_save": { + "external": { + "command": "node_modules/.bin/prettier", + "arguments": ["--stdin-filepath", "{buffer_path}"] + } + } + } + } }