Skip to content

Commit 0ce567d

Browse files
authored
Add new at-rule-no-unknown rules for tailwind (#21)
1 parent 08da419 commit 0ce567d

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

config.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,19 @@ module.exports = {
4040
'no-descending-specificity': null,
4141
'at-rule-no-vendor-prefix': true,
4242
'at-rule-no-unknown': null,
43-
'scss/at-rule-no-unknown': true,
43+
'scss/at-rule-no-unknown': [
44+
true,
45+
{
46+
ignoreAtRules: [
47+
'tailwind',
48+
'apply',
49+
'variants',
50+
'responsive',
51+
'screen',
52+
'layer',
53+
],
54+
},
55+
],
4456
'scss/declaration-nested-properties': 'never',
4557
'scss/selector-no-redundant-nesting-selector': true,
4658
'scss/percent-placeholder-pattern': '^do-not-use-placeholders$',

0 commit comments

Comments
 (0)