From e2f374818e91cea854864c0e42e839edb9d306b2 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Thu, 19 Oct 2017 20:15:08 +0700 Subject: [PATCH] Add `array-bracket-newline` rule --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 066c245..7569a0f 100644 --- a/index.js +++ b/index.js @@ -140,6 +140,7 @@ module.exports = { 'no-path-concat': 'error', 'no-restricted-imports': ['error', 'domain', 'freelist', 'smalloc', 'sys', 'colors'], 'no-restricted-modules': ['error', 'domain', 'freelist', 'smalloc', 'sys', 'colors'], + 'array-bracket-newline': ['error', 'consistent'], 'array-bracket-spacing': ['error', 'never'], 'brace-style': ['error', '1tbs', { allowSingleLine: false