forked from bigcommerce/checkout-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylelint.config.js
57 lines (57 loc) · 2.44 KB
/
stylelint.config.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
module.exports = {
extends: 'stylelint-config-standard-scss',
plugins: ['stylelint-order'],
rules: {
'alpha-value-notation': null,
'at-rule-empty-line-before': null,
'at-rule-no-unknown': null,
'at-rule-no-vendor-prefix': null,
'block-no-empty': null,
'color-function-notation': null,
'color-hex-length': null,
'comment-empty-line-before': null,
'custom-property-pattern': null,
'declaration-block-no-duplicate-properties': null,
'declaration-block-no-redundant-longhand-properties': null,
'declaration-block-no-shorthand-property-overrides': null,
'font-family-name-quotes': null,
'font-family-no-duplicate-names': null,
'font-family-no-missing-generic-family-keyword': null,
'function-name-case': null,
'function-url-quotes': null,
'keyframes-name-pattern': null,
'length-zero-no-unit': null,
'no-descending-specificity': null,
'no-duplicate-selectors': null,
'order/properties-alphabetical-order': null,
'number-max-precision': null,
'property-no-vendor-prefix': null,
'property-no-unknown': null,
'rule-empty-line-before': null,
'scss/at-else-closing-brace-newline-after': null,
'scss/at-else-closing-brace-space-after': null,
'scss/at-if-closing-brace-newline-after': null,
'scss/at-if-closing-brace-space-after': null,
'scss/at-import-partial-extension': null,
'scss/at-extend-no-missing-placeholder': null,
'scss/at-function-pattern': null,
'scss/at-mixin-argumentless-call-parentheses': null,
'scss/at-mixin-pattern': null,
'scss/comment-no-empty': null,
'scss/dollar-variable-colon-space-after': null,
'scss/dollar-variable-empty-line-before': null,
'scss/dollar-variable-pattern': null,
'scss/double-slash-comment-empty-line-before': null,
'scss/double-slash-comment-whitespace-inside': null,
'scss/no-global-function-names': null,
'scss/operator-no-unspaced': null,
'selector-attribute-quotes': null,
'selector-class-pattern': null,
'selector-id-pattern': null,
'selector-no-vendor-prefix': null,
'selector-pseudo-element-colon-notation': null,
'selector-type-no-unknown': null,
'shorthand-property-no-redundant-values': null,
'value-keyword-case': null,
},
};