We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39223f0 commit a35497fCopy full SHA for a35497f
stylelint.config.js
@@ -0,0 +1,32 @@
1
+module.exports = {
2
+ extends: 'stylelint-config-recommended-scss',
3
+ rules: {
4
+ indentation: 'tab',
5
+ 'selector-type-no-unknown': null,
6
+ 'number-leading-zero': null,
7
+ 'rule-empty-line-before': [
8
+ 'always',
9
+ {
10
+ ignore: ['after-comment', 'inside-block'],
11
+ },
12
+ ],
13
+ 'declaration-empty-line-before': [
14
+ 'never',
15
16
+ ignore: ['after-declaration'],
17
18
19
+ 'comment-empty-line-before': null,
20
+ 'selector-type-case': null,
21
+ 'selector-list-comma-newline-after': null,
22
+ 'no-descending-specificity': null,
23
+ 'string-quotes': 'single',
24
+ 'selector-pseudo-element-no-unknown': [
25
+ true,
26
27
+ ignorePseudoElements: ['v-deep'],
28
29
30
31
+ plugins: ['stylelint-scss'],
32
+}
0 commit comments