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}|[ -~])+$",
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.