Skip to content

jsonc/array-bracket-newline

enforce line breaks after opening and before closing array brackets

  • 🔧 The --fix option on the command line can automatically fix some of the problems reported by this rule.

📖 Rule Details

This rule enforces line breaks after opening and before closing array brackets.

Now loading...

🔧 Options

json
{
    "jsonc/array-bracket-newline": ["error",
        {
            "multiline": true,
            "minItems": null
        }
    ]
}

Same as array-bracket-newline rule option. See here for details.

🚀 Version

This rule was introduced in eslint-plugin-jsonc v0.1.0

🔍 Implementation

Taken with ❤️ from ESLint core