Back to all reviewers

Validate configuration formatting

appwrite/appwrite
Based on 3 comments
Json

Ensure all JSON configuration files adhere to proper syntax and formatting conventions. Common issues to avoid include: 1. **Invalid key-value syntax**: All JSON properties must use proper key-value format with double-quoted keys.

Code Style Json

Reviewer Prompt

Ensure all JSON configuration files adhere to proper syntax and formatting conventions. Common issues to avoid include:

  1. Invalid key-value syntax: All JSON properties must use proper key-value format with double-quoted keys. ```diff // Incorrect
    • hi am sairam

    // Correct

    • “message”: “hi am sairam”, ```

    ```

Run a JSON validator on configuration files before committing changes to catch these issues early. Proper JSON formatting ensures reliable parsing, prevents runtime errors, and maintains code consistency across the project.

3
Comments Analyzed
Json
Primary Language
Code Style
Category

Source Discussions