├── LICENSE.md ├── README.md ├── arrays ├── empty-array.json ├── leading-comma-array.js ├── lone-trailing-comma-array.js ├── no-comma-array.errorSpec ├── no-comma-array.txt ├── regular-array.json └── trailing-comma-array.json5 ├── comments ├── block-comment-following-array-element.json5 ├── block-comment-following-top-level-value.json5 ├── block-comment-in-string.json ├── block-comment-preceding-top-level-value.json5 ├── block-comment-with-asterisks.json5 ├── inline-comment-following-array-element.json5 ├── inline-comment-following-top-level-value.json5 ├── inline-comment-in-string.json ├── inline-comment-preceding-top-level-value.json5 ├── top-level-block-comment.errorSpec ├── top-level-block-comment.txt ├── top-level-inline-comment.errorSpec ├── top-level-inline-comment.txt └── unterminated-block-comment.txt ├── misc ├── empty.txt ├── npm-package.json ├── npm-package.json5 ├── readme-example.json5 └── valid-whitespace.json5 ├── new-lines ├── .editorconfig ├── .gitattributes ├── comment-cr.json5 ├── comment-crlf.json5 ├── comment-lf.json5 ├── escaped-cr.json5 ├── escaped-crlf.json5 └── escaped-lf.json5 ├── numbers ├── float-leading-decimal-point.json5 ├── float-leading-zero.json ├── float-trailing-decimal-point-with-integer-exponent.json5 ├── float-trailing-decimal-point.json5 ├── float-with-integer-exponent.json ├── float.json ├── hexadecimal-empty.txt ├── hexadecimal-lowercase-letter.json5 ├── hexadecimal-uppercase-x.json5 ├── hexadecimal-with-integer-exponent.json5 ├── hexadecimal.json5 ├── infinity.json5 ├── integer-with-float-exponent.txt ├── integer-with-hexadecimal-exponent.txt ├── integer-with-integer-exponent.json ├── integer-with-negative-float-exponent.txt ├── integer-with-negative-hexadecimal-exponent.txt ├── integer-with-negative-integer-exponent.json ├── integer-with-negative-zero-integer-exponent.json ├── integer-with-positive-float-exponent.txt ├── integer-with-positive-hexadecimal-exponent.txt ├── integer-with-positive-integer-exponent.json ├── integer-with-positive-zero-integer-exponent.json ├── integer-with-zero-integer-exponent.json ├── integer.json ├── lone-decimal-point.txt ├── nan.json5 ├── negative-float-leading-decimal-point.json5 ├── negative-float-leading-zero.json ├── negative-float-trailing-decimal-point.json5 ├── negative-float.json ├── negative-hexadecimal.json5 ├── negative-infinity.json5 ├── negative-integer.json ├── negative-noctal.js ├── negative-octal.txt ├── negative-zero-float-leading-decimal-point.json5 ├── negative-zero-float-trailing-decimal-point.json5 ├── negative-zero-float.json ├── negative-zero-hexadecimal.json5 ├── negative-zero-integer.json ├── negative-zero-octal.txt ├── noctal-with-leading-octal-digit.js ├── noctal.js ├── octal.txt ├── positive-float-leading-decimal-point.json5 ├── positive-float-leading-zero.json5 ├── positive-float-trailing-decimal-point.json5 ├── positive-float.json5 ├── positive-hexadecimal.json5 ├── positive-infinity.json5 ├── positive-integer.json5 ├── positive-noctal.js ├── positive-octal.txt ├── positive-zero-float-leading-decimal-point.json5 ├── positive-zero-float-trailing-decimal-point.json5 ├── positive-zero-float.json5 ├── positive-zero-hexadecimal.json5 ├── positive-zero-integer.json5 ├── positive-zero-octal.txt ├── zero-float-leading-decimal-point.json5 ├── zero-float-trailing-decimal-point.json5 ├── zero-float.json ├── zero-hexadecimal.json5 ├── zero-integer-with-integer-exponent.json ├── zero-integer.json └── zero-octal.txt ├── objects ├── duplicate-keys.json ├── empty-object.json ├── illegal-unquoted-key-number.errorSpec ├── illegal-unquoted-key-number.txt ├── illegal-unquoted-key-symbol.errorSpec ├── illegal-unquoted-key-symbol.txt ├── leading-comma-object.errorSpec ├── leading-comma-object.txt ├── lone-trailing-comma-object.txt ├── no-comma-object.txt ├── reserved-unquoted-key.json5 ├── single-quoted-key.json5 ├── trailing-comma-object.json5 └── unquoted-keys.json5 ├── strings ├── escaped-single-quoted-string.json5 ├── multi-line-string.json5 ├── no-comma-array.errorSpec ├── single-quoted-string.json5 ├── unescaped-multi-line-string.errorSpec └── unescaped-multi-line-string.txt └── todo ├── unicode-escaped-unquoted-key.json5 └── unicode-unquoted-key.json5 /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/README.md -------------------------------------------------------------------------------- /arrays/empty-array.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /arrays/leading-comma-array.js: -------------------------------------------------------------------------------- 1 | [ 2 | ,null 3 | ] -------------------------------------------------------------------------------- /arrays/lone-trailing-comma-array.js: -------------------------------------------------------------------------------- 1 | [ 2 | , 3 | ] -------------------------------------------------------------------------------- /arrays/no-comma-array.errorSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/arrays/no-comma-array.errorSpec -------------------------------------------------------------------------------- /arrays/no-comma-array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/arrays/no-comma-array.txt -------------------------------------------------------------------------------- /arrays/regular-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/arrays/regular-array.json -------------------------------------------------------------------------------- /arrays/trailing-comma-array.json5: -------------------------------------------------------------------------------- 1 | [ 2 | null, 3 | ] -------------------------------------------------------------------------------- /comments/block-comment-following-array-element.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/block-comment-following-array-element.json5 -------------------------------------------------------------------------------- /comments/block-comment-following-top-level-value.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/block-comment-following-top-level-value.json5 -------------------------------------------------------------------------------- /comments/block-comment-in-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/block-comment-in-string.json -------------------------------------------------------------------------------- /comments/block-comment-preceding-top-level-value.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/block-comment-preceding-top-level-value.json5 -------------------------------------------------------------------------------- /comments/block-comment-with-asterisks.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/block-comment-with-asterisks.json5 -------------------------------------------------------------------------------- /comments/inline-comment-following-array-element.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/inline-comment-following-array-element.json5 -------------------------------------------------------------------------------- /comments/inline-comment-following-top-level-value.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/inline-comment-following-top-level-value.json5 -------------------------------------------------------------------------------- /comments/inline-comment-in-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/inline-comment-in-string.json -------------------------------------------------------------------------------- /comments/inline-comment-preceding-top-level-value.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/inline-comment-preceding-top-level-value.json5 -------------------------------------------------------------------------------- /comments/top-level-block-comment.errorSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/top-level-block-comment.errorSpec -------------------------------------------------------------------------------- /comments/top-level-block-comment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/top-level-block-comment.txt -------------------------------------------------------------------------------- /comments/top-level-inline-comment.errorSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/top-level-inline-comment.errorSpec -------------------------------------------------------------------------------- /comments/top-level-inline-comment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/top-level-inline-comment.txt -------------------------------------------------------------------------------- /comments/unterminated-block-comment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/comments/unterminated-block-comment.txt -------------------------------------------------------------------------------- /misc/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/npm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/misc/npm-package.json -------------------------------------------------------------------------------- /misc/npm-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/misc/npm-package.json5 -------------------------------------------------------------------------------- /misc/readme-example.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/misc/readme-example.json5 -------------------------------------------------------------------------------- /misc/valid-whitespace.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/misc/valid-whitespace.json5 -------------------------------------------------------------------------------- /new-lines/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/new-lines/.editorconfig -------------------------------------------------------------------------------- /new-lines/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/new-lines/.gitattributes -------------------------------------------------------------------------------- /new-lines/comment-cr.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/new-lines/comment-cr.json5 -------------------------------------------------------------------------------- /new-lines/comment-crlf.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/new-lines/comment-crlf.json5 -------------------------------------------------------------------------------- /new-lines/comment-lf.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/new-lines/comment-lf.json5 -------------------------------------------------------------------------------- /new-lines/escaped-cr.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/new-lines/escaped-cr.json5 -------------------------------------------------------------------------------- /new-lines/escaped-crlf.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/new-lines/escaped-crlf.json5 -------------------------------------------------------------------------------- /new-lines/escaped-lf.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/new-lines/escaped-lf.json5 -------------------------------------------------------------------------------- /numbers/float-leading-decimal-point.json5: -------------------------------------------------------------------------------- 1 | .5 2 | -------------------------------------------------------------------------------- /numbers/float-leading-zero.json: -------------------------------------------------------------------------------- 1 | 0.5 2 | -------------------------------------------------------------------------------- /numbers/float-trailing-decimal-point-with-integer-exponent.json5: -------------------------------------------------------------------------------- 1 | 5.e4 2 | -------------------------------------------------------------------------------- /numbers/float-trailing-decimal-point.json5: -------------------------------------------------------------------------------- 1 | 5. 2 | -------------------------------------------------------------------------------- /numbers/float-with-integer-exponent.json: -------------------------------------------------------------------------------- 1 | 1.2e3 2 | -------------------------------------------------------------------------------- /numbers/float.json: -------------------------------------------------------------------------------- 1 | 1.2 2 | -------------------------------------------------------------------------------- /numbers/hexadecimal-empty.txt: -------------------------------------------------------------------------------- 1 | 0x 2 | -------------------------------------------------------------------------------- /numbers/hexadecimal-lowercase-letter.json5: -------------------------------------------------------------------------------- 1 | 0xc8 2 | -------------------------------------------------------------------------------- /numbers/hexadecimal-uppercase-x.json5: -------------------------------------------------------------------------------- 1 | 0XC8 2 | -------------------------------------------------------------------------------- /numbers/hexadecimal-with-integer-exponent.json5: -------------------------------------------------------------------------------- 1 | 0xc8e4 2 | -------------------------------------------------------------------------------- /numbers/hexadecimal.json5: -------------------------------------------------------------------------------- 1 | 0xC8 2 | -------------------------------------------------------------------------------- /numbers/infinity.json5: -------------------------------------------------------------------------------- 1 | Infinity 2 | -------------------------------------------------------------------------------- /numbers/integer-with-float-exponent.txt: -------------------------------------------------------------------------------- 1 | 1e2.3 2 | -------------------------------------------------------------------------------- /numbers/integer-with-hexadecimal-exponent.txt: -------------------------------------------------------------------------------- 1 | 1e0x4 2 | -------------------------------------------------------------------------------- /numbers/integer-with-integer-exponent.json: -------------------------------------------------------------------------------- 1 | 2e23 2 | -------------------------------------------------------------------------------- /numbers/integer-with-negative-float-exponent.txt: -------------------------------------------------------------------------------- 1 | 1e-2.3 2 | -------------------------------------------------------------------------------- /numbers/integer-with-negative-hexadecimal-exponent.txt: -------------------------------------------------------------------------------- 1 | 1e-0x4 2 | -------------------------------------------------------------------------------- /numbers/integer-with-negative-integer-exponent.json: -------------------------------------------------------------------------------- 1 | 2e-23 2 | -------------------------------------------------------------------------------- /numbers/integer-with-negative-zero-integer-exponent.json: -------------------------------------------------------------------------------- 1 | 5e-0 2 | -------------------------------------------------------------------------------- /numbers/integer-with-positive-float-exponent.txt: -------------------------------------------------------------------------------- 1 | 1e+2.3 2 | -------------------------------------------------------------------------------- /numbers/integer-with-positive-hexadecimal-exponent.txt: -------------------------------------------------------------------------------- 1 | 1e+0x4 2 | -------------------------------------------------------------------------------- /numbers/integer-with-positive-integer-exponent.json: -------------------------------------------------------------------------------- 1 | 1e+2 2 | -------------------------------------------------------------------------------- /numbers/integer-with-positive-zero-integer-exponent.json: -------------------------------------------------------------------------------- 1 | 5e+0 2 | -------------------------------------------------------------------------------- /numbers/integer-with-zero-integer-exponent.json: -------------------------------------------------------------------------------- 1 | 5e0 2 | -------------------------------------------------------------------------------- /numbers/integer.json: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /numbers/lone-decimal-point.txt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /numbers/nan.json5: -------------------------------------------------------------------------------- 1 | NaN 2 | -------------------------------------------------------------------------------- /numbers/negative-float-leading-decimal-point.json5: -------------------------------------------------------------------------------- 1 | -.5 2 | -------------------------------------------------------------------------------- /numbers/negative-float-leading-zero.json: -------------------------------------------------------------------------------- 1 | -0.5 2 | -------------------------------------------------------------------------------- /numbers/negative-float-trailing-decimal-point.json5: -------------------------------------------------------------------------------- 1 | -5. 2 | -------------------------------------------------------------------------------- /numbers/negative-float.json: -------------------------------------------------------------------------------- 1 | -1.2 2 | -------------------------------------------------------------------------------- /numbers/negative-hexadecimal.json5: -------------------------------------------------------------------------------- 1 | -0xC8 2 | -------------------------------------------------------------------------------- /numbers/negative-infinity.json5: -------------------------------------------------------------------------------- 1 | -Infinity 2 | -------------------------------------------------------------------------------- /numbers/negative-integer.json: -------------------------------------------------------------------------------- 1 | -15 2 | -------------------------------------------------------------------------------- /numbers/negative-noctal.js: -------------------------------------------------------------------------------- 1 | -098 2 | -------------------------------------------------------------------------------- /numbers/negative-octal.txt: -------------------------------------------------------------------------------- 1 | -0123 2 | -------------------------------------------------------------------------------- /numbers/negative-zero-float-leading-decimal-point.json5: -------------------------------------------------------------------------------- 1 | -.0 2 | -------------------------------------------------------------------------------- /numbers/negative-zero-float-trailing-decimal-point.json5: -------------------------------------------------------------------------------- 1 | -0. 2 | -------------------------------------------------------------------------------- /numbers/negative-zero-float.json: -------------------------------------------------------------------------------- 1 | -0.0 2 | -------------------------------------------------------------------------------- /numbers/negative-zero-hexadecimal.json5: -------------------------------------------------------------------------------- 1 | -0x0 2 | -------------------------------------------------------------------------------- /numbers/negative-zero-integer.json: -------------------------------------------------------------------------------- 1 | -0 2 | -------------------------------------------------------------------------------- /numbers/negative-zero-octal.txt: -------------------------------------------------------------------------------- 1 | -00 2 | -------------------------------------------------------------------------------- /numbers/noctal-with-leading-octal-digit.js: -------------------------------------------------------------------------------- 1 | 0780 2 | -------------------------------------------------------------------------------- /numbers/noctal.js: -------------------------------------------------------------------------------- 1 | 080 2 | -------------------------------------------------------------------------------- /numbers/octal.txt: -------------------------------------------------------------------------------- 1 | 010 2 | -------------------------------------------------------------------------------- /numbers/positive-float-leading-decimal-point.json5: -------------------------------------------------------------------------------- 1 | +.5 2 | -------------------------------------------------------------------------------- /numbers/positive-float-leading-zero.json5: -------------------------------------------------------------------------------- 1 | +0.5 2 | -------------------------------------------------------------------------------- /numbers/positive-float-trailing-decimal-point.json5: -------------------------------------------------------------------------------- 1 | +5. 2 | -------------------------------------------------------------------------------- /numbers/positive-float.json5: -------------------------------------------------------------------------------- 1 | +1.2 2 | -------------------------------------------------------------------------------- /numbers/positive-hexadecimal.json5: -------------------------------------------------------------------------------- 1 | +0xC8 2 | -------------------------------------------------------------------------------- /numbers/positive-infinity.json5: -------------------------------------------------------------------------------- 1 | +Infinity 2 | -------------------------------------------------------------------------------- /numbers/positive-integer.json5: -------------------------------------------------------------------------------- 1 | +15 2 | -------------------------------------------------------------------------------- /numbers/positive-noctal.js: -------------------------------------------------------------------------------- 1 | +098 2 | -------------------------------------------------------------------------------- /numbers/positive-octal.txt: -------------------------------------------------------------------------------- 1 | +0123 2 | -------------------------------------------------------------------------------- /numbers/positive-zero-float-leading-decimal-point.json5: -------------------------------------------------------------------------------- 1 | +.0 2 | -------------------------------------------------------------------------------- /numbers/positive-zero-float-trailing-decimal-point.json5: -------------------------------------------------------------------------------- 1 | +0. 2 | -------------------------------------------------------------------------------- /numbers/positive-zero-float.json5: -------------------------------------------------------------------------------- 1 | +0.0 2 | -------------------------------------------------------------------------------- /numbers/positive-zero-hexadecimal.json5: -------------------------------------------------------------------------------- 1 | +0x0 2 | -------------------------------------------------------------------------------- /numbers/positive-zero-integer.json5: -------------------------------------------------------------------------------- 1 | +0 2 | -------------------------------------------------------------------------------- /numbers/positive-zero-octal.txt: -------------------------------------------------------------------------------- 1 | +00 2 | -------------------------------------------------------------------------------- /numbers/zero-float-leading-decimal-point.json5: -------------------------------------------------------------------------------- 1 | .0 2 | -------------------------------------------------------------------------------- /numbers/zero-float-trailing-decimal-point.json5: -------------------------------------------------------------------------------- 1 | 0. 2 | -------------------------------------------------------------------------------- /numbers/zero-float.json: -------------------------------------------------------------------------------- 1 | 0.0 2 | -------------------------------------------------------------------------------- /numbers/zero-hexadecimal.json5: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /numbers/zero-integer-with-integer-exponent.json: -------------------------------------------------------------------------------- 1 | 0e23 2 | -------------------------------------------------------------------------------- /numbers/zero-integer.json: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /numbers/zero-octal.txt: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /objects/duplicate-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/objects/duplicate-keys.json -------------------------------------------------------------------------------- /objects/empty-object.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /objects/illegal-unquoted-key-number.errorSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/objects/illegal-unquoted-key-number.errorSpec -------------------------------------------------------------------------------- /objects/illegal-unquoted-key-number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/objects/illegal-unquoted-key-number.txt -------------------------------------------------------------------------------- /objects/illegal-unquoted-key-symbol.errorSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/objects/illegal-unquoted-key-symbol.errorSpec -------------------------------------------------------------------------------- /objects/illegal-unquoted-key-symbol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/objects/illegal-unquoted-key-symbol.txt -------------------------------------------------------------------------------- /objects/leading-comma-object.errorSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/objects/leading-comma-object.errorSpec -------------------------------------------------------------------------------- /objects/leading-comma-object.txt: -------------------------------------------------------------------------------- 1 | { 2 | ,"foo": "bar" 3 | } -------------------------------------------------------------------------------- /objects/lone-trailing-comma-object.txt: -------------------------------------------------------------------------------- 1 | { 2 | , 3 | } -------------------------------------------------------------------------------- /objects/no-comma-object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/objects/no-comma-object.txt -------------------------------------------------------------------------------- /objects/reserved-unquoted-key.json5: -------------------------------------------------------------------------------- 1 | { 2 | while: true 3 | } -------------------------------------------------------------------------------- /objects/single-quoted-key.json5: -------------------------------------------------------------------------------- 1 | { 2 | 'hello': "world" 3 | } -------------------------------------------------------------------------------- /objects/trailing-comma-object.json5: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar", 3 | } -------------------------------------------------------------------------------- /objects/unquoted-keys.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/objects/unquoted-keys.json5 -------------------------------------------------------------------------------- /strings/escaped-single-quoted-string.json5: -------------------------------------------------------------------------------- 1 | 'I can\'t wait' -------------------------------------------------------------------------------- /strings/multi-line-string.json5: -------------------------------------------------------------------------------- 1 | 'hello\ 2 | world' -------------------------------------------------------------------------------- /strings/no-comma-array.errorSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/strings/no-comma-array.errorSpec -------------------------------------------------------------------------------- /strings/single-quoted-string.json5: -------------------------------------------------------------------------------- 1 | 'hello world' -------------------------------------------------------------------------------- /strings/unescaped-multi-line-string.errorSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/strings/unescaped-multi-line-string.errorSpec -------------------------------------------------------------------------------- /strings/unescaped-multi-line-string.txt: -------------------------------------------------------------------------------- 1 | "foo 2 | bar" 3 | -------------------------------------------------------------------------------- /todo/unicode-escaped-unquoted-key.json5: -------------------------------------------------------------------------------- 1 | { 2 | sig\u03A3ma: "the sum of all things" 3 | } -------------------------------------------------------------------------------- /todo/unicode-unquoted-key.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json5/json5-tests/HEAD/todo/unicode-unquoted-key.json5 --------------------------------------------------------------------------------