Skip to content

5.0.0

Latest
Compare
Choose a tag to compare
@fvclaus fvclaus released this 04 Oct 17:13
· 2 commits to master since this release
  • Adds support for inline and single line comments #40

All the following are supported now:

[ // start of array
    // comment before object
    { // comment at start of object
        // comment before property
        "id": 2, // comment at property
        // comment after property
    } // comment at end of object
    // comment at the end of array
]
  • Adds support for block and multi line comments #44

JSONC is no fully supported:

    [ /* start of array */
      /*
       * comment before object
       */
      { /* comment start of object */
        "id": 1, /* comment for property */
        /*
         * comment end of object
         */
      }, /* comment after object */
      /* comment at the end */
    ]`
  • Fixes problem parsing backslashes at the end of a string: "foo\\" #45

  • Adds an 'Open GitHub Issue' button to all error messages #41

Error with Open GitHub Issue button
New GitHub Issue