Skip to content
Commit f1b54906 authored by ntome's avatar ntome 💬 Committed by hydrargyrum
Browse files

tools/hooks/check-trailing-commas: accept compact multiline single containers

This can be accepted for compacity:

    foo = [{
        1: 1,
        2: 2,
    }]

Rather than forcing to do:

    foo = [
        {
            1: 1,
            2: 2,
        },
    ]
parent 43715aec
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment