home / skills / ehtbanton / claudeskillsrepo / editorconfig-generator
This skill instantly generates a complete .editorconfig file with project-specific settings for consistent coding styles across editors.
npx playbooks add skill ehtbanton/claudeskillsrepo --skill editorconfig-generatorReview the files below or copy the command above to add this skill to your agents.
---
name: editorconfig-generator
description: Generate .editorconfig files for consistent coding styles across different editors and IDEs. Triggers on "create editorconfig", "generate editor config", "editorconfig for", "editor settings".
---
# EditorConfig Generator
Generate .editorconfig files for consistent coding styles across editors.
## Output Requirements
**File Output:** `.editorconfig`
**Format:** EditorConfig INI syntax
**Standards:** EditorConfig specification
## When Invoked
Immediately generate a complete .editorconfig file with appropriate settings for the project.
## Example Invocations
**Prompt:** "Create editorconfig for web project"
**Output:** Complete `.editorconfig` with settings for JS, CSS, HTML, JSON.
This skill generates complete .editorconfig files to enforce consistent coding styles across editors and IDEs. It produces EditorConfig-compliant INI syntax tailored to the project type and languages detected or requested. Use simple triggers like "create editorconfig" or "editorconfig for <project>" to get a ready-to-use file.
When invoked, the skill analyzes the project type or the language list you provide and assembles a .editorconfig file with global defaults and language-specific sections. It follows the EditorConfig specification and outputs valid INI syntax ready to save at the repository root. You can request presets (web, node, python, etc.) or custom rules (indent_style, end_of_line, charset, trim_trailing_whitespace, insert_final_newline).
Can I customize the generated sections?
Yes. Provide the list of languages or specific rules you want included and the skill will incorporate them into the .editorconfig output.
Does the output follow the EditorConfig spec?
Yes. The skill produces EditorConfig-compliant INI syntax and standard keys like indent_style, indent_size, charset, end_of_line, trim_trailing_whitespace, and insert_final_newline.