Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stylelint.config.js - github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6e8707d6b191860a7d8375e72a15053bdb250e7 (plain)
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
module.exports = {
    extends: 'stylelint-config-recommended-scss',
    rules: {
        indentation: 'tab',
        'selector-type-no-unknown': null,
        'number-leading-zero': null,
        'rule-empty-line-before': [
            'always',
            {
                ignore: ['after-comment', 'inside-block'],
            }
        ],
        'declaration-empty-line-before': [
            'never',
            {
                ignore: ['after-declaration'],
            },
        ],
        'comment-empty-line-before': null,
        'selector-type-case': null,
        'selector-list-comma-newline-after': null,
        'no-descending-specificity': null,
        'string-quotes': 'single',
        'selector-pseudo-element-no-unknown': [
            true,
            {
                ignorePseudoElements: ['v-deep'],
            },
        ],
    },
    plugins: ['stylelint-scss'],
}