-
Notifications
You must be signed in to change notification settings - Fork 11
/
.stylelintrc.js
39 lines (38 loc) · 1.49 KB
/
.stylelintrc.js
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
'use strict';
module.exports = {
extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'],
rules: {
'property-no-unknown': null,
'selector-class-pattern': null,
'length-zero-no-unit': null,
'selector-pseudo-element-colon-notation': null,
'selector-id-pattern': null,
'no-duplicate-selectors': null,
'alpha-value-notation': null,
'font-family-no-missing-generic-family-keyword': null,
'color-function-notation': null,
'declaration-block-no-redundant-longhand-properties': null,
'declaration-block-no-shorthand-property-overrides': null,
'declaration-block-no-duplicate-properties': null,
'declaration-empty-line-before': null,
'at-rule-empty-line-before': null,
'at-rule-no-unknown': null,
'media-feature-range-notation': null,
'no-descending-specificity': null,
'rule-empty-line-before': null,
'property-no-vendor-prefix': null,
'custom-property-empty-line-before': null,
'comment-empty-line-before': null,
'number-max-precision': null,
'keyframes-name-pattern': null,
'prettier/prettier': null,
'function-url-quotes': null,
'function-no-unknown': null,
'value-keyword-case': null,
'block-no-empty': null,
'color-hex-length': null,
'value-no-vendor-prefix': null,
'shorthand-property-no-redundant-values': null,
'import-notation': null,
},
};