diff --git a/index.js b/index.js index dd71a34..ee52e59 100644 --- a/index.js +++ b/index.js @@ -40,6 +40,11 @@ module.exports = { // https://stylelint.io/user-guide/rules/declaration-block-no-redundant-longhand-properties/ 'declaration-block-no-redundant-longhand-properties': null, + // This suggests syntax that is not compatible with node-sass. It is blocked until we move our standard tooling to dart sass. + // https://github.com/Skyscanner/backpack-react-scripts/blob/ccba8c3ae8b3cb178dd8ac4efa749328ede8928b/packages/react-scripts/package.json#L57 + // https://stylelint.io/user-guide/rules/media-feature-range-notation/ + 'media-feature-range-notation': null, + 'selector-max-id': 0, 'selector-max-type': [ 0, @@ -82,12 +87,6 @@ module.exports = { ignoreAtRules: ['else'], }, ], - 'block-closing-brace-newline-after': [ - 'always', - { - ignoreAtRules: ['if', 'else'], - }, - ], 'at-rule-no-unknown': null, 'no-descending-specificity': null, 'scss/at-rule-no-unknown': true,