refactor: avoid tabs in markdown files#448
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the .editorconfig file to enforce space-based indentation for Markdown files and makes corresponding formatting adjustments to existing Markdown documentation files to comply with the new configuration.
Changes:
- Added Markdown-specific formatting rules to
.editorconfigrequiring 2-space indentation instead of tabs - Updated markdown files to remove tabs and add blank lines for improved formatting
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .editorconfig | Added Markdown section with space indentation rules (indent_size: 2, indent_style: space) |
| Docs/pages/setup/04-parameter-matching.md | Added blank line after "Regular Expressions" heading |
| Docs/pages/setup/03-indexers.md | Added blank line before "Notes:" section |
| CONTRIBUTING.md | Reformatted wrapped text to remove inline continuation |
|
🚀 Benchmark ResultsDetails
|
|
This is addressed in release v1.2.0. |



This PR updates the
.editorconfigfile to enforce space-based indentation for Markdown files and makes corresponding formatting adjustments to existing Markdown documentation files to comply with the new configuration.Key Changes:
.editorconfigrequiring 2-space indentation instead of tabs