Skip to content

Commit

Permalink
[KOA-6224] Adjust non-compatible rules (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicfraser authored Jul 25, 2023
1 parent 83b418b commit 005091f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 005091f

Please sign in to comment.