-
-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
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
Feedback: json vs jsonc #512
Comments
I would love to be able to use JSONC or YAML as the configuration document language. Much more maintainable for me and I use comments extensively. |
Front Matter uses the parser you mentioned. You can also add your file association that VSCode should treat your JSON file as JSONC. "files.associations": {
"frontmatter.json": "jsonc"
} I will check if this file association can be added by the extension itself. |
Immediately going to update my repos to use this. It looks like this is scoped to make |
In the beta and upcoming version, you can just keep using the |
Ohhh! I misunderstood. That's rad. Similar question though about comments/format in the other files (like in the |
I can add it for any |
I don't know what JSON parsers this project uses for the configuration file, but sometimes I wish I could add some form of a comment to some of my settings. Having JSONC as a format would enable us to just add some inline comments. I know it looks like a proprietary format, but adding faux elements to my JSON to comment on things feels bloated and false :D
Other formats like YAML and TOML have commenting features.
The text was updated successfully, but these errors were encountered: