We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The editorconfig home page, section File Format Details says:
Special characters can be escaped with a backslash so they won't be interpreted as wildcard patterns.
So from my understanding, the following glob expressions are valid and should be tested.
[a\*.abc] tab_width=19 [a\?.abc] tab_width=20 [a\[.abc] tab_width=21 [a\{.abc] tab_width=22
I could provide a pull request if you are interested.
PS: The escaped '[' and '{' result in invalid regular expressions in editorconfig-core-py.
The text was updated successfully, but these errors were encountered:
Another glob expression that should be tested:
; Slash after escaped close bracket [ab[c\]/]d] slash_after_escaped_close=true
Sorry, something went wrong.
Closed the wrong issue...
No branches or pull requests
The editorconfig home page, section File Format Details says:
So from my understanding, the following glob expressions are valid and should be tested.
I could provide a pull request if you are interested.
PS: The escaped '[' and '{' result in invalid regular expressions in editorconfig-core-py.
The text was updated successfully, but these errors were encountered: