-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsfra.js
41 lines (40 loc) · 1.53 KB
/
sfra.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
module.exports = {
extends: 'stylelint-config-standard-scss',
rules: {
'scss/at-import-no-partial-leading-underscore': true,
'scss/at-import-partial-extension-blacklist': ['scss'],
'scss/dollar-variable-no-missing-interpolation': true,
'scss/media-feature-value-dollar-variable': 'always',
'scss/selector-no-redundant-nesting-selector': true,
'at-rule-empty-line-before': ['always', {
ignoreAtRules: ['else'],
ignore: [
'blockless-after-same-name-blockless', 'inside-block', 'blockless-after-blockless',
],
}],
'at-rule-no-unknown': null,
'font-family-no-missing-generic-family-keyword': null,
'no-descending-specificity': null,
'no-duplicate-selectors': null,
'alpha-value-notation': null,
'color-function-notation': null,
'font-family-name-quotes': null,
'function-url-quotes': null,
'import-notation': null,
'number-max-precision': null,
'property-no-vendor-prefix': null,
'scss/at-mixin-argumentless-call-parentheses': null,
'scss/comment-no-empty': 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-not-notation': null,
'shorthand-property-no-redundant-values': null,
},
}