Finalize support for EditorConfig specification 0.17.2 #46
No reviewers
Labels
No labels
Compat/Breaking
EditorConfig
0.17.2
Kind
Bug
Kind
Chore
Kind
Documentation
Kind
Enhancement
Kind
Feature
Kind
Testing
Packaging
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
WIP
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
BaumiCoder/ecformat!46
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "enhancement/finalize-0.17.2-editorconfig-support"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
User perspective
As ecformat support now all properties of the EditorConfig specification 0.17.2, the version information of ecformat no includes this version of the EditorConfig specification. Furthermore, the supported version is also accessible when using ecformat as a lib crate. Use the
ecformat::editorconfig_versionmacro for this.Developer perspective
Beside the extension of the version information, I tried to make simple performance improvement by reducing the number of file reads and writes. However, this did not turn out as expected. Therefore, I made issue #45 to consider that sometime later.
Furthermore, this Pull Request adds
root = truefor the.editorconfigfiles in the Integration tests to avoid failing tests due to other.editorconfigfiles.@ -39,3 +39,3 @@anyhow = "1.0.102"charset-normalizer-rs = "1.1.0"clap = { version = "4.5.60", features = ["derive", "wrap_help"] }clap = { version = "4.5.60", features = ["cargo", "derive", "wrap_help"] }The feature
cargois necessary for theclap::crate_versionmacro.