Skip to content

Commit

Permalink
Add TODOs to the config
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes committed Nov 15, 2023
1 parent 918a54f commit f82e6c6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
extends: 'stylelint-config-standard-scss',
extends: 'stylelint-config-standard-scss', // TODO: Enable separately, as the diff will be significant
// TODO: Enable separately, as the diff will be significant "plugins": ["stylelint-order"],
rules: {
'no-descending-specificity': null,
'number-max-precision': 5,
Expand Down Expand Up @@ -38,8 +39,10 @@ module.exports = {
message: 'Expected variable to match kebab-case or snake_case',
},
],
'scss/operator-no-newline-after': null,
'scss/operator-no-newline-after': null, // Doesn't always play well with prettier
'scss/at-extend-no-missing-placeholder': null,
'scss/comment-no-empty': null,
// "order/order": ["dollar-variables", "custom-properties", "declarations", "rules", "at-rules"],
// "order/properties-order": ["width", "height"],
},
}

0 comments on commit f82e6c6

Please sign in to comment.