Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check for trailing garbage (comma) at the end of objects and arrays, before closing bracket #156

Open
wants to merge 17 commits into
base: master
Choose a base branch
from

Commits on Dec 7, 2021

  1. Check for trailing garbage (comma) at the end of objects and arrays, …

    …before closing bracket
    Thad Megow committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    c685f1c View commit details
    Browse the repository at this point in the history
  2. Improve readability of trailing_garbage function

    Thad Megow committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    b819cf4 View commit details
    Browse the repository at this point in the history
  3. Improve readability of trailing_garbage function

    Thad Megow committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    2ab2ddc View commit details
    Browse the repository at this point in the history
  4. Add documentation for trailing_garbage func

    Thad Megow committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    f11077c View commit details
    Browse the repository at this point in the history
  5. Merge branch 'trailing-comma-lint' of https://github.com/tmegow/json-…

    …parser into trailing-comma-lint
    Thad Megow committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    b8393c1 View commit details
    Browse the repository at this point in the history
  6. Update documentation for trailing_garbage func

    Thad Megow committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    89a71dc View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2021

  1. Use classic C comments

    Thad Megow committed Dec 8, 2021
    Configuration menu
    Copy the full SHA
    3c147c0 View commit details
    Browse the repository at this point in the history
  2. Remove unnecessary var

    Thad Megow committed Dec 8, 2021
    Configuration menu
    Copy the full SHA
    b517d4d View commit details
    Browse the repository at this point in the history
  3. Formatting fix

    Thad Megow committed Dec 8, 2021
    Configuration menu
    Copy the full SHA
    fd3e100 View commit details
    Browse the repository at this point in the history
  4. Use classic C comments

    Thad Megow committed Dec 8, 2021
    Configuration menu
    Copy the full SHA
    9d909f0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dcb939c View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2021

  1. Update number of invalid tests from 10->12

    Thad Megow committed Dec 9, 2021
    Configuration menu
    Copy the full SHA
    2cdb320 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2021

  1. Make loading of conditional code branches used for linting be depende…

    …nt upon a compile-time option. Enable runtime option for enabling linting when compile-time option is set. Make compile-time option accept values of unset, 1, or 2 - with 1 requiring the runtime option to be included for linting to run and with 2 loading and running the linting code without requiring the runtime option
    tmegow committed Dec 19, 2021
    Configuration menu
    Copy the full SHA
    eab9582 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    578fa7d View commit details
    Browse the repository at this point in the history
  3. Enable JSON_LINTING compile time option during tests and enable json_…

    …enable_linting runtime option when extensions == 1 in json_verify
    tmegow committed Dec 19, 2021
    Configuration menu
    Copy the full SHA
    d8e78f2 View commit details
    Browse the repository at this point in the history
  4. Fix previous attempt to enable JSON_LINTING during tests. Create --en…

    …able-linting configure option for autoconf.
    tmegow committed Dec 19, 2021
    Configuration menu
    Copy the full SHA
    6d63a37 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    24f7e07 View commit details
    Browse the repository at this point in the history