# jsonlint-check **Repository Path**: mirrors_mapbox/jsonlint-check ## Basic Information - **Project Name**: jsonlint-check - **Description**: Check JSON for linted-ness. - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://travis-ci.org/mapbox/jsonlint-check.svg)](https://travis-ci.org/mapbox/jsonlint-check) Check JSON for linted-ness. ## JavaScript ```javascript var check = require('@mapbox/jsonlint-check'); var json = '{"foo":"bar","baz":"bin"}'; if (check(json, 2, false)) { console.error('json is linted with 2 space indents'); } else { console.error('json is not linted'); } ``` ## CLI See USAGE.txt ## Tests ``` npm test ```