You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 22, 2026. It is now read-only.
⚠️ Notice: This is just a concept, meaning it's not completely sure to be implemented.
JSONLint
The main idea is to implement a syntax checker inside the JSONutils library.
For example, a syntax error when using arrays as an object value, you accidentally use curly braces {} instead of brackets [], the Linter will notice the syntax issue and warn you at the console, like:
Lint: Syntax issue found at line 3, column 15. Found `{` instead of `[` -> " "coolObject": { 123, ..."
Tip: Replace the curly brace with a bracket
JSONLint
The main idea is to implement a syntax checker inside the JSONutils library.
For example, a syntax error when using arrays as an object value, you accidentally use curly braces
{}instead of brackets[], the Linter will notice the syntax issue and warn you at the console, like: