From 28faf9748c2cfc524b224bc236e2fa6f41f5dfce Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Tue, 3 Feb 2026 09:29:38 -0500 Subject: [PATCH] feat: add Zed editor config for Tailwind CSS - Create .zed/settings.json to ignore unknown at-rule warnings - Configure Zed to ignore Tailwind's @tailwind directives - Add explanatory comment in input.css for Tailwind directives - Resolves CSS linter warnings in Zed editor --- .zed/settings.json | 14 ++++++++++++++ web/static/input.css | 5 +---- 2 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..1fae428 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,14 @@ +{ + "linter": { + "css": { + "disabled": ["unknownAtRules"] + } + }, + "formatter": { + "language": { + "CSS": { + "unknownAtRules": "ignore" + } + } + } +} diff --git a/web/static/input.css b/web/static/input.css index 8342430..2a9c10d 100644 --- a/web/static/input.css +++ b/web/static/input.css @@ -1,10 +1,7 @@ -/* tailwindcss start - suppress at-rule warnings */ -/* eslint-disable */ +/* Tailwind CSS directives - required for framework */ @tailwind base; @tailwind components; @tailwind utilities; -/* eslint-enable */ -/* tailwindcss end */ @layer base { :root {