From 744d0d45eb39c5b516ef5a469c7481f4bdd8e407 Mon Sep 17 00:00:00 2001 From: Evan Yamanishi Date: Fri, 25 Sep 2020 13:02:50 -0400 Subject: [PATCH] chore: temporarily disable broken stylelint properties https://github.com/stylelint/stylelint/issues/4937 --- .stylelintrc.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.stylelintrc.js b/.stylelintrc.js index 06b6af225..18b5b6e95 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -13,6 +13,12 @@ module.exports = { 'scss/at-function-pattern': '^[_-]?[a-z]+([a-z0-9-]+[a-z0-9]+)?$', 'scss/at-mixin-pattern': '^[_-]?[a-z]+([a-z0-9-]+[a-z0-9]+)?$', 'scss/dollar-variable-pattern': '^[_-]?[a-z]+([a-z0-9-]+[a-z0-9]+)?$', + /** + * temporarily disable *-empty-lin-before rules + * See https://github.com/stylelint/stylelint/issues/4917 + */ + 'at-rule-empty-line-before': null, + 'declaration-empty-line-before': null, }, ignoreFiles: ['**/*.jsx', '**/*.tsx'], };