```jsonc // Folder-specific settings // // For a full list of overridable settings, and general information on folder-specific settings, // see the documentation: https://zed.dev/docs/configuring-zed#settings-files { "formatter": { "external": { "command": "node_modules/.bin/prettier", "arguments": ["--stdin-filepath", "{buffer_path}"] } }, "lsp": { "tailwindcss-language-server": { "settings": { "classFunctions": ["cn"], "experimental": { "classRegex": ["[cls|className]\\s\\:\\=\\s\"([^\"]*)"] } } } }, "languages": { "TSX": { "code_actions_on_format": { "source.fixAll.eslint": true } }, "JavaScript": { "code_actions_on_format": { "source.fixAll.eslint": true } }, "TypeScript": { "code_actions_on_format": { "source.fixAll.eslint": true } } } } ```