From 0ffbc877c5b16a04b135b0531af368aa2ab65163 Mon Sep 17 00:00:00 2001 From: Dani Fenske Date: Thu, 6 Sep 2018 14:23:04 -0700 Subject: [PATCH] Disable the 'declaration-colon-newline-after' rule since it conflicts with Prettier --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 00bed61..aafabac 100644 --- a/index.js +++ b/index.js @@ -12,6 +12,7 @@ module.exports = { 'declaration-block-no-duplicate-properties': true, 'declaration-block-no-redundant-longhand-properties': true, 'declaration-block-semicolon-newline-after': 'always', + 'declaration-colon-newline-after': null, 'font-family-name-quotes': 'always-unless-keyword', 'font-weight-notation': 'numeric', 'function-parentheses-space-inside': 'never',