forked from sulu/sulu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylelint.config.js
28 lines (27 loc) · 945 Bytes
/
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
/* eslint-disable flowtype/require-valid-file-annotation */
'use strict';
module.exports = { // eslint-disable-line
'extends': 'stylelint-config-standard-scss',
'rules': {
'scss/dollar-variable-pattern': null,
'selector-class-pattern': null,
'scss/dollar-variable-empty-line-before': null,
'scss/at-import-partial-extension': null,
'shorthand-property-no-redundant-values': null,
'declaration-block-no-redundant-longhand-properties': null,
'value-keyword-case': ['lower', {
camelCaseSvgKeywords: true,
}],
'indentation': 4,
'max-line-length': 120,
'no-descending-specificity': null,
'number-leading-zero': 'never',
'selector-pseudo-class-no-unknown': [ true, {
ignorePseudoClasses: [
'global',
'export',
],
}],
'string-quotes': 'single',
},
};