-
Notifications
You must be signed in to change notification settings - Fork 541
/
Copy pathstylelint.config.js
61 lines (61 loc) · 2.15 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
58
59
60
61
/** @type {import('stylelint').Config} */
export default {
extends: 'stylelint-config-standard',
ignoreFiles: [
// Ignore non CSS/LESS files
'**/*.!(css|less)',
// ignore vendored css
'static/css/zamboni/jquery-ui/*',
],
rules: {
'selector-class-pattern': null,
'selector-id-pattern': null,
'no-descending-specificity': null,
'no-duplicate-selectors': null,
'declaration-property-value-no-unknown': null,
'font-family-no-missing-generic-family-keyword': null,
'function-linear-gradient-no-nonstandard-direction': null,
'declaration-block-single-line-max-declarations': null,
'selector-pseudo-class-no-unknown': null,
'block-no-empty': null,
'declaration-block-no-shorthand-property-overrides': null,
'no-empty-source': null,
'at-rule-prelude-no-invalid': null,
'selector-type-no-unknown': null,
'number-max-precision': null,
'selector-pseudo-element-no-unknown': null,
'declaration-property-value-keyword-no-deprecated': null,
'at-rule-no-unknown': null,
'rule-empty-line-before': null,
'selector-pseudo-element-colon-notation': null,
'property-no-vendor-prefix': null,
'shorthand-property-no-redundant-values': null,
'color-function-notation': null,
'alpha-value-notation': null,
'color-hex-length': null,
'length-zero-no-unit': null,
'function-url-quotes': null,
'selector-attribute-quotes': null,
'declaration-empty-line-before': null,
'at-rule-empty-line-before': null,
'comment-empty-line-before': null,
'function-name-case': null,
'declaration-block-no-redundant-longhand-properties': null,
'import-notation': null,
'font-family-no-duplicate-names': null,
'declaration-block-no-duplicate-properties': null,
'value-no-vendor-prefix': null,
'comment-whitespace-inside': null,
'selector-no-vendor-prefix': null,
'media-feature-range-notation': null,
'value-keyword-case': null,
'selector-not-notation': null,
'declaration-property-value-keyword-no-deprecated': null,
},
overrides: [
{
files: ['static/css/**/*.less'],
extends: ['stylelint-config-standard-less'],
},
],
};