✅ Supports all EditorConfig core properties.
📌 Sections are applied from top to bottom; later rules override earlier ones.
✅ Supports all EditorConfig core properties.
📌 Sections are applied from top to bottom; later rules override earlier ones.
EditorConfig helps maintain consistent coding styles across different editors and IDEs. This generator creates a valid .editorconfig file with your chosen rules.
It tells EditorConfig that this is the top‑most configuration file. The search for .editorconfig stops at this directory.
Add a section with pattern *.py and set indent_size to 4, for example. You can use the "Python" preset for a quick start.
indent_size defines how many spaces a tab or an indent level uses. tab_width only controls how wide a tab character appears.
Yes, all core properties are included: indent_style, indent_size, tab_width, end_of_line, charset, trim_trailing_whitespace, insert_final_newline.
Yes! EditorConfig is often the base layer. Prettier and ESLint can read and respect these settings.