-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathstylelint.config.js
More file actions
47 lines (43 loc) · 1.11 KB
/
stylelint.config.js
File metadata and controls
47 lines (43 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export default {
extends: ['stylelint-config-standard'],
rules: {
// For Tailwind
'at-rule-no-unknown': [
true,
{
ignoreAtRules: [
'tailwind',
'apply',
'layer',
'config',
'plugin',
'variants',
'responsive',
'screen',
'theme',
'custom-variant',
],
},
],
'selector-class-pattern': null,
'no-descending-specificity': null,
'property-no-vendor-prefix': null,
'value-no-vendor-prefix': null,
'declaration-property-value-keyword-no-deprecated': null,
// Whitespace & Formatting
'custom-property-empty-line-before': null,
'comment-empty-line-before': null,
'rule-empty-line-before': null,
'declaration-empty-line-before': null,
// Color Notation
'color-function-notation': null,
'color-function-alias-notation': null,
'alpha-value-notation': null,
'color-hex-length': null,
'lightness-notation': null,
'hue-degree-notation': null,
// Value Formatting
'value-keyword-case': null,
'import-notation': null,
},
};