-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylelint.config.js
68 lines (68 loc) · 2.18 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
62
63
64
65
66
67
68
module.exports = {
rules: {
// 'color-no-invalid-hex': true,
// 'color-no-hex': true,
// 'color-named': 'never',
// 'string-no-newline': true,
// 'unit-no-unknown': true,
// 'property-no-unknown': true,
// 'declaration-block-no-duplicate-properties': true,
// 'declaration-block-no-shorthand-property-overrides': true,
// 'block-no-empty': true,
// 'selector-pseudo-class-no-unknown': true,
// 'selector-pseudo-element-no-unknown': true,
// 'selector-type-no-unknown': true,
// 'media-feature-name-no-unknown': true,
// 'comment-no-empty': true,
// 'no-duplicate-at-import-rules': true,
// 'no-duplicate-selectors': true,
// 'no-empty-source': true,
// 'no-extra-semicolons': true,
// 'length-zero-no-unit': true,
// 'font-weight-notation': 'named-where-possible',
// 'declaration-block-single-line-max-declarations': 1,
// 'font-family-name-quotes': 'always-unless-keyword',
// 'number-leading-zero': 'always',
// 'string-quotes': 'double',
// 'unit-case': 'lower',
// 'custom-property-empty-line-before': 'never',
// 'declaration-bang-space-after': 'never',
// 'declaration-colon-space-after': 'always-single-line',
// 'declaration-block-semicolon-space-before': 'never',
// 'declaration-block-trailing-semicolon': 'always',
// 'block-closing-brace-empty-line-before': 'never',
// 'block-closing-brace-newline-after': 'always',
// 'rule-empty-line-before': [
// 'always', {
// ignore: [
// 'first-nested',
// 'after-comment',
// ],
// },
// ],
// 'at-rule-no-unknown': [
// true, {
// ignoreAtRules: [
// 'each',
// 'extend',
// 'if',
// 'else',
// 'include',
// 'mixin',
// ],
// },
// ],
// 'comment-empty-line-before': 'always',
// 'max-empty-lines': 1,
// 'no-eol-whitespace': [
// true, {
// ignore: [
// 'empty-lines',
// ],
// },
// ],
// 'comment-whitespace-inside': 'always',
// 'no-empty-first-line': true,
// 'selector-pseudo-element-colon-notation': 'double',
},
};