← Back to list

lint-with-conform
by clempat
Nix flake for unified AI tools configuration (Claude Code, OpenCode, MCP servers)
⭐ 7🍴 0📅 Jan 23, 2026
SKILL.md
name: lint-with-conform description: Run formatters on files based on the user's conform neovim configuration. Supports multiple languages including JavaScript, TypeScript, Python, Go, Nix, Lua, and more. Use this when the user asks to format, lint, or clean up code files.
Lint with Conform
This skill runs formatters on files according to the conform neovim setup in ~/workspace/nvim-config.
Formatter Configuration
Based on the user's conform setup, the following formatters should be used:
- CSS: prettierd
- HTML/Django Templates: djlint (for htmldjango), prettierd (for html)
- GraphQL: prettierd
- JavaScript/JSX: prettierd
- JSON: prettierd
- Lua: stylua
- Markdown: prettierd
- Nix: nixfmt
- Python: isort, then black (run in sequence)
- Shell scripts: shfmt
- Svelte: prettierd
- Sass: prettierd
- TypeScript/TSX: prettierd
- Vue: prettierd
- YAML: prettierd
- Go: gofumpt
- Go templates: gofumpt
- Terraform: terraform_fmt
Instructions
When asked to lint or format files:
- Determine file type: Check the file extension or content to determine the language
- Select formatter: Use the appropriate formatter(s) from the configuration above
- Run formatter: Execute the formatter command with appropriate flags
- Show results: Display any errors or changes made
Common Formatter Commands
- prettierd:
prettierd <file>(prints formatted output to stdout) - nixfmt:
nixfmt <file>(formats file in place) - stylua:
stylua <file>(formats file in place) - black:
black <file>(formats file in place) - isort:
isort <file>(sorts imports in place) - shfmt:
shfmt -w <file>(formats file in place) - gofumpt:
gofumpt -w <file>(formats file in place) - terraform_fmt:
terraform fmt <file>(formats file in place) - djlint:
djlint --reformat <file>(formats file in place)
For Python files
Run both formatters in sequence:
isort <file> && black <file>
Handling Multiple Files
When multiple files are provided, process them according to their file types and run the appropriate formatter for each.
Error Handling
- If a formatter is not installed, inform the user which tool is missing
- If formatting fails, show the error message and suggest fixes
- Skip files in
node_modulesdirectories (per user's config)
Examples
Format a single JavaScript file
prettierd src/components/Button.jsx
Format a Python file
isort main.py && black main.py
Format a Nix file
nixfmt flake.nix
Notes
- The user's setup disables
eslint_das it's not available - Files in
node_modulesshould be skipped - For files with formatters that modify in place, ensure to read the file first to preserve content if formatting fails
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon