We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
no-invalid-position-declaration
1 parent 99ff28c commit dfd52f1Copy full SHA for dfd52f1
1 file changed
index.js
@@ -56,6 +56,13 @@ module.exports = {
56
},
57
],
58
59
+ // Added in 16.23.0 to prevent CSS variables declaration outside rules
60
+ // The rule often results in false positives on update due to multiple csstools packages, requiring "npm dedupe"
61
+ // See: https://github.com/stylelint/stylelint/issues/9252
62
+ // The rule doesn't seem to be very useful
63
+ // Disabling to avoid false positives on updates until the upstream issue is resolved
64
+ 'no-invalid-position-declaration': null,
65
+
66
// Consistent with ES imports
67
'scss/load-partial-extension': 'always',
68
0 commit comments