forked from zaach/jsonlint
-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
I have some strings that I have carefully constructed and do not want modifications made to them when linted.
Could an option be added to specify that string content representation should not be changed?
Example of the string representation change that I would like to avoid. The Unicode escapes are translated to their corresponding characters.
- "pattern": "^(?:\\\\x[0-9A-F]{2}|[\u0020-\u007E])+$",
+ "pattern": "^(?:\\\\x[0-9A-F]{2}|[ -~])+$",
Metadata
Metadata
Assignees
Labels
No labels